网站首页 > 基础教程 正文
基于范围的 for 的初始化语句 | P0614R1 |
放松范围 for 循环自定义点查找规则 | P0962R1 |
基于范围的 for 的初始化语句
与if-statement类似,基于范围的for循环现在可以有init-statement。它可以用来避免悬空引用。
#include <iostream>
#include <string>
void f(){
std::string str="hello";
for(std::size_t i = 0; auto& v : str){
i++;
std::cout << i << ":" << v << std::endl;
}
}
int main()
{
f();
return 0;
}
放松范围 for 循环自定义点查找规则
这与结构化绑定自定义点修复类似。要在一个范围内迭代,基于范围的for循环需要自由函数或成员begin/end函数。旧规则的工作方式是,如果找到任何名为begin/end的成员(函数或变量),编译器就会尝试使用成员函数。对于具有成员开始但没有成员结束的类型,或者相反,这就产生了一个问题。现在只有在两个名称都存在的情况下才使用成员函数,否则使用自由函数。
#include <iostream>
#include <sstream>
#include <iterator>
#include <string>
struct X : std::stringstream {
// ...
};
std::istream_iterator<char> begin(X& x){
std::cout << "begin" << std::endl;
return std::istream_iterator<char>(x);
}
std::istream_iterator<char> end(X& x){
std::cout << "end" << std::endl;
return std::istream_iterator<char>();
}
void f(){
std::string str="hello";
X x;
x << str;
// X has member with name `end` inherited from std::stringstream
// but due to new rules free begin()/end() are used
for (auto&& i : x) {
std::cout << i << std::endl;
}
}
int main()
{
f();
return 0;
}
https://wandbox.org/nojs/gcc-head
https://wandbox.org/nojs/clang-head
猜你喜欢
- 2024-10-19 C语言中的`for`关键字是一种循环控制结构
- 2024-10-19 写给所有人的编程思维-循环篇(for循环)
- 2024-10-19 在PLC编程中,循环语句FOR和WHILE怎么选?
- 2024-10-19 C语言for循环基本流程 c语言for循环程序
- 2024-10-19 BAT批处理命令之for bat文件中for用法
- 2024-10-19 C语言for循环解析 c语言中for循环
- 2024-10-19 Java Web实战篇:增强for循环实现原理及for循环实战性能优化
- 2024-10-19 1分钟教你学会for循环 for循环教程
- 2024-10-19 C++阶乘:一个数的阶乘和一个范围的阶乘之和
- 2024-10-19 (八)C#编程基础复习——for循环 c# for each循环
- 最近发表
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)