传递给非主函数的数组上基于范围的 for 循环
在函数调用中将数组分配给指针时,编译器推断指针类型并丢失重要信息:数组大小。当尝试在函数内执行基于范围的 for 循环时,这种差异会触发错误。
要解决此问题,一种解决方案是使用数组引用而不是指针。通过这样做,该函数保留了数组大小的知识:
<code class="cpp">void foo(int (&bar)[3]); int main() { int bar[3] = {1, 2, 3}; for (int i : bar) { cout << i << endl; } foo(bar); } void foo(int (&bar)[3]) { for (int i : bar) { cout << i << endl; } }
或者,可以通过引入表示数组大小的模板参数来采用通用方法:
<code class="cpp">template <std::size_t array_size> void foo(int (&bar)[array_size]) { for (int i : bar) { cout << i << endl; } }</code>
通过利用这些技术,可以在传递给非主函数的数组上成功执行基于范围的 for 循环。
以上是如何在 C 中传递给非主函数的数组上使用基于范围的 for 循环?的详细内容。更多信息请关注PHP中文网其他相关文章!