专业编程基础技术教程

网站首页 > 基础教程 正文

C++20尝鲜:基于范围for c++ 范围for

ccvgpt 2024-10-19 03:28:35 基础教程 9 ℃

基于范围的 for 的初始化语句

P0614R1

C++20尝鲜:基于范围for c++ 范围for

放松范围 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

Tags:

最近发表
标签列表