美文网首页程序员
【c++11关键字】 auto 未完待续

【c++11关键字】 auto 未完待续

作者: 小鱼号的代码日记 | 来源:发表于2020-10-18 16:02 被阅读0次
    /*
     * c++11关键字
     * auto
     *  未完待续
     * 小鱼号的代码日志
    */
    #include <QCoreApplication>
    #include <iostream>
    #include <typeinfo>
    using namespace  std;
    float add(int a,float b)
    {
        return a+b;
    }
    int main(int argc, char *argv[])
    {
        QCoreApplication a(argc, argv);
        auto v = 1 + 2;
        cout << " type of v " << typeid(v).name() << "\n";
        auto b = add(11,125.51);
        cout << " type of b " << typeid(b).name() << "\n";
        auto c = {1,2};
        cout << " type of c " << typeid(c).name() << "\n";
    
        auto myLambda = [](int x) {return x+3;};
        cout << " type of myLambda " << typeid(myLambda).name() << "\n";
    
        return a.exec();
    }
    

    相关文章

      网友评论

        本文标题:【c++11关键字】 auto 未完待续

        本文链接:https://www.haomeiwen.com/subject/trcqmktx.html