在C++中,使用std::cout
或std::printf
函数输出数组是最常用的方法。下面是一些技巧:
- 使用循环遍历数组元素并输出:
int arr[] = {1, 2, 3, 4, 5}; for(int i = 0; i < 5; i++) { std::cout << arr[i] << " "; }
- 使用
std::copy
函数将数组元素复制到std::ostream_iterator
对象中输出:
int arr[] = {1, 2, 3, 4, 5}; std::copy(std::begin(arr), std::end(arr), std::ostream_iterator(std::cout, " "));
- 使用范围循环(C++11及以上版本)遍历数组元素并输出:
int arr[] = {1, 2, 3, 4, 5}; for(int num : arr) { std::cout << num << " "; }
这些是一些简单但有效的方法来输出数组元素。可以根据实际需求选择最适合的方法。