voID foo() { int n; // Do things that result in initialization of n freeze n; // Imaginary construct that declares "n" const for rest of scope // Later steps that depend on 'n' but do not change it}
是否存在捕获此模式的C语言?当然,块的后半部分可以移动到一个单独的功能,但是可以在不移动任何东西的情况下完成吗?
解决方法 而不是将不可变部分包装为lambda,如何将初始化部分包装成lambda并将其作为const int获取?然后就没有机会改变可变的int n.voID foo() { const int n = []() { ; // Do things that result in initialization of n return initialized_n; }(); // Later steps that depend on 'n' but do not change it}总结
以上是内存溢出为你收集整理的c – 常数,但仅适用于此范围的其余部分全部内容,希望文章能够帮你解决c – 常数,但仅适用于此范围的其余部分所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)