栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

typedef和只有一个成员的struct有什么区别?

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

typedef和只有一个成员的struct有什么区别?

答案是C++程序员最爱的类型安全。
typedef本质上就只是一个别名而已。
但是struct实实在在是不同的类型,尽管他们成员相同。

int main() {
    typedef int T1;
    typedef int T2;
    T1 t1 = 0;
    T2 t2 = 1;
    std::cout << typeid(t1).name() << endl;
    std::cout << typeid(t2).name() << endl;
    
    struct {
        int i;
    } s1;
    struct {
        int i;
    } s2;
    std::cout << typeid(s1).name() << endl;
    std::cout << typeid(s2).name() << endl;
    t1 = t2; //不会报错
    s1 = s2; //会报错
}

前半部分执行结果:

执行完成,耗时:0 ms
i
i
Z4mainE3$_0
Z4mainE3$_1

最后两行:

执行完成,耗时:N/A
Line 18: Char 8: error: no viable overloaded '='
    s1 = s2; //会报错
    ~~ ^ ~~
Line 9: Char 5: note: candidate function (the implicit copy assignment operator) not viable: no known conversion from 'struct (anonymous struct at solution.cpp:17:5)' to 'const (anonymous struct at solution.cpp:14:5)' for 1st argument
    struct {
    ^
Line 9: Char 5: note: candidate function (the implicit move assignment operator) not viable: no known conversion from 'struct (anonymous struct at solution.cpp:17:5)' to '(anonymous struct at solution.cpp:14:5)' for 1st argument
    struct {
    ^
1 error generated.
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/884103.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号