C/C++教程

c++17学习笔记:在if和switch中申明变量

本文主要是介绍c++17学习笔记:在if和switch中申明变量,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

总的来说,这是一种新的语法糖,下面是一个在if中声明变量的例子

#include <iostream>

int main()
{
	// if 和 else 中都能访问到
    if (int x = 10; x < 5)
        std::cout << x << std::endl;
    else
        std::cout << "x >= 5, "
                  << "x is : " << x << std::endl;
}

switch同理

switch (int x = 2; x)
    {
    case 1:
        std::cout << "x is 1" << std::endl;
        break;
    case 2:
        std::cout << "x is 2" << std::endl;
    }
这篇关于c++17学习笔记:在if和switch中申明变量的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!