【C++17】新特性梳理
目录 if init表达式 structual bindings inline变量 std::string_view if init表达式 C++17语言引入了一个新版本的if/switch语句形式,if (init; condition)和switch (init; condition),即可以在if和switch语句中直接对声明变量并初始化,如下: if(const auto it = myString.find(hello); it != string::npos) { cout << it << - Hello\n; } if(const au
暂无评论