C++范围for循环简化容器遍历,语法为for(declaration : expression),适用于支持begin()和end()的容器,可结合const auto&提高安全性和效率,处理多维数组时需在外层使用引用防止数组退化。

C++范围for循环是一种简化容器遍历的语法,它允许你更简洁地迭代容器中的元素,而无需显式地管理索引或迭代器。它让代码更易读,也更安全,因为避免了越界访问的风险。
解决方案
范围for循环的基本语法如下:
for (declaration : expression) {
// 循环体
}declaration
auto
expression
std::vector
std::list
例如,遍历一个
std::vector<int>
立即学习“C++免费学习笔记(深入)”;
#include <iostream>
#include <vector>
int main() {
std::vector<int> numbers = {1, 2, 3, 4, 5};
for (int number : numbers) {
std::cout << number << " ";
}
std::cout << std::endl; // 输出:1 2 3 4 5
// 使用 auto 简化类型声明
for (auto number : numbers) {
std::cout << number << " ";
}
std::cout << std::endl; // 输出:1 2 3 4 5
// 修改容器中的元素 (需要使用引用)
for (int& number : numbers) {
number *= 2;
}
for (int number : numbers) {
std::cout << number << " ";
}
std::cout << std::endl; // 输出:2 4 6 8 10
return 0;
}注意:如果需要在循环中修改容器中的元素,需要使用引用 (
&
declaration
范围for循环可以用于任何支持
begin()
end()
std::vector
std::array
std::list
std::deque
std::set
std::map
std::unordered_set
std::unordered_map
甚至可以用于自定义的容器类型,只要它们提供了合适的
begin()
end()
struct Node {
int data;
Node* next;
};
class MyList {
public:
MyList(std::initializer_list<int> init) {
Node* current = nullptr;
for (int val : init) {
Node* newNode = new Node{val, nullptr};
if (!head) {
head = newNode;
current = head;
} else {
current->next = newNode;
current = newNode;
}
}
}
~MyList() {
Node* current = head;
while (current) {
Node* next = current->next;
delete current;
current = next;
}
}
Node* begin() const { return head; }
Node* end() const { return nullptr; } // 关键:end() 返回 nullptr
private:
Node* head = nullptr;
// 友元类,允许范围for访问 Node::data
friend class MyListIterator;
};
class MyListIterator {
public:
using iterator_category = std::forward_iterator_tag;
using value_type = int;
using difference_type = std::ptrdiff_t;
using pointer = int*;
using reference = int&;
MyListIterator(Node* node) : current(node) {}
MyListIterator& operator++() {
if (current) {
current = current->next;
}
return *this;
}
MyListIterator operator++(int) {
MyListIterator temp = *this;
++(*this);
return temp;
}
bool operator==(const MyListIterator& other) const {
return current == other.current;
}
bool operator!=(const MyListIterator& other) const {
return !(*this == other);
}
int& operator*() const {
return current->data;
}
private:
Node* current;
};
namespace std {
template <>
struct iterator_traits<MyListIterator> {
using iterator_category = std::forward_iterator_tag;
using value_type = int;
using difference_type = std::ptrdiff_t;
using pointer = int*;
using reference = int&;
};
}
MyListIterator begin(const MyList& list) { return MyListIterator(list.head); }
MyListIterator end(const MyList& list) { return MyListIterator(nullptr); }
int main() {
MyList myList = {1, 2, 3, 4, 5};
for (int& value : myList) {
std::cout << value << " ";
}
std::cout << std::endl; // 输出: 1 2 3 4 5
return 0;
}这个例子展示了如何为自定义数据结构提供迭代器支持,从而可以使用范围for循环。关键在于正确实现
begin()
end()
优势:
劣势:
break
总的来说,范围for循环在大多数情况下都是一个更好的选择,特别是当你只需要简单地遍历容器中的每个元素时。但在需要更精细的控制或访问索引时,传统的for循环仍然是必要的。
const
auto
const
auto
const
const
std::vector<int> numbers = {1, 2, 3, 4, 5};
for (const auto&amp; number : numbers) { // 使用 const auto&amp;
std::cout << number << " "; // 只能读取,不能修改
}
std::cout << std::endl;使用
const auto&amp;
auto
auto
std::map<std::string, int> scores = {{"Alice", 90}, {"Bob", 80}};
for (const auto&amp; pair : scores) { // 使用 auto 简化类型声明
std::cout << pair.first << ": " << pair.second << std::endl;
}在这个例子中,
auto
pair
std::pair<const std::string, int>
总结:在范围for循环中,尽可能使用
const auto&amp;
C++11 的范围 for 循环主要设计用于遍历一维容器。处理多维数组时,需要特别注意其工作方式,否则可能会导致编译错误或运行时行为不符合预期。
对于二维数组,直接使用范围 for 循环:
int arr[3][4] = {{1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12}};
for (auto& row : arr) { // row 的类型是 int[4]
for (int element : row) {
std::cout << element << " ";
}
std::cout << std::endl;
}关键点:
auto& row
int[4]
int
row
int
如果省略了外层循环的引用,例如:
for (auto row : arr) { // 错误!row 的类型是 int*,数组退化为指针
// ...
}在这种情况下,
row
int*
begin()
end()
对于更高维度的数组,需要嵌套更多的范围 for 循环,并始终确保外层循环使用引用,以避免数组退化。
int arr[2][3][4] = { /* 初始化数据 */ };
for (auto& matrix : arr) {
for (auto& row : matrix) {
for (int element : row) {
std::cout << element << " ";
}
std::cout << std::endl;
}
std::cout << std::endl;
}总而言之,使用范围 for 循环处理多维数组的关键在于理解数组退化为指针的规则,并始终在外层循环中使用引用来避免这个问题。这确保了编译器能够正确推导出元素的类型,并生成正确的迭代代码。
以上就是C++范围for循环 容器遍历简化语法的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号