美文网首页
C++.typedef

C++.typedef

作者: teanee | 来源:发表于2018-01-02 10:43 被阅读0次

    typedef可以为已有类型取一个新名字:

    typedef oldtype newname;

    例子:

    #include <iostream>

    using namespace std;

    int main(){

        typedef int room;

        room r1 = 4;

        cout<<r1<<endl;

        return 0;

    }

    结果:

    4

    没什么新鲜的,和C语言的typedef一样。

    相关文章

      网友评论

          本文标题:C++.typedef

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