初学C++ 之 auto关键字(IDE:VS2013)

2018-06-17 23:42:55来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

/*使用auto关键字,需要先赋初值,auto关键字是会根据初值来判断类型*/
    auto i = 5;
    auto j = 10;
    cout << "auto i = 5" << "\ti type:" << typeid(i).name() << endl << "auto j = 10" << "\tj type:" << typeid(j).name() << endl;
    cout << "i + j = " << i + j << endl;

    auto a = "Hello World!";
    cout << "auto a = Hello World!" << endl;
    cout << "a type:" << typeid(a).name() << endl;

    auto b = false;
    cout << "auto b = false" << endl;
    cout << "b type:" << typeid(b).name() << endl;

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:【USACO】DP动态规划小测(一)

下一篇:矩阵连乘最优解---动态规划