现代c++实践:变量声明强化,竟然可以在if/switch中定义变量!

Posted CodeBowl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了现代c++实践:变量声明强化,竟然可以在if/switch中定义变量!相关的知识,希望对你有一定的参考价值。

变量声明强化,竟然可以在if/switch中定义变量!

c通过本文你可以了解

C++17新特性 变量声明强化

在if/switch 中的变量声明强化

if/switch 变量声明强化

在传统 C++ 中,变量的声明虽然能够位于任何位置,甚至于 for 语句内能够声明一个临时变量 int,但始终没有办法在 if 和 switch 语句中声明一个临时的变量。例如:

#include <iostream>
#include <vector>
#include <algorithm>
void Var_Declarat_Reinforcement() 
{
	std::vector<int> vec = { 1, 2, 3, 4 };
	// 在 c++17 之前
	const std::vector<int>::iterator itr = std::find(vec.begin(), vec.end(), 2);//必须提前声明
	if (itr != vec.end()) 
	{
		*itr = 3;
	}
	// 需要重新定义一个新的变量
	const std::vector<int>::iterator itr2 = std::find(vec.begin(), vec.end(), 3);
	if (itr2 != vec.end()) 
	{
		*itr2 = 4;
	}
	// 将输出 1, 4, 3, 4
	for (std::vector<int>::iterator element = vec.begin(); element != vec.end(); ++element)
	{
		std::cout << *element << std::endl;
	}		
}

在上面的代码中,我们可以看到 itr 这一变量是定义在整个 main() 的作用域内的,这导致当我们 需要再次遍历整个 std::vectors 时,需要重新命名另一个变量。

C++17 消除了这一限制,使得我们可以在 if(或 switch)中完成这一操作。、

// 将临时变量放到 if 语句内
if (const std::vector<int>::iterator itr = std::find(vec.begin(), vec.end(), 3);
itr != vec.end()) {
*itr = 4;
}

总结

这在某些情况下非常好用,可以算作C++的语法糖,非常建议使用!

但是在使用之前,你需要升级编译器到支持C++17

以上是关于现代c++实践:变量声明强化,竟然可以在if/switch中定义变量!的主要内容,如果未能解决你的问题,请参考以下文章

python 变量传到C++变量中如何传值 举例说明

现代C++实践100练:吃透C++新特性constexpr

声明具有两种类型的变量:“int char”

今晚7点半:现代C++和Mediasoup的WebRTC集群服务实践

现代C++实践100练:为什么使用nullptr代替NULL?因为它更加风骚

基于现代C++的声明式显示模块API