解决警告C4133:’=’:不兼容的类型 – 从struct到struct

解决警告C4133:’=’:不兼容的类型 – 从struct到struct,第1张

概述我的应用程序中有类似的结构. typedef struct _Test { int n; struct Test *Next; }Test;int main(int argc, char **argv){ Test tmp, tmp1; tmp.n = 1; tmp.Next = NULL; tmp1.n = 我的应用程序中有类似的结构.

typedef struct _Test    {        int n;        struct Test *Next;    }Test;int main(int argc,char **argv){    Test tmp,tmp1;    tmp.n = 1;    tmp.Next = NulL;    tmp1.n = 0;    tmp1.Next = &tmp;    return 0;}

在线

tmp1.Next = &tmp;

我收到以下警告消息:
警告C4133:’=’:不兼容的类型 – 从’测试*’到’测试*’

上面的代码有什么问题?

解决方法
typedef struct _Test{    int n;    struct Test *Next; // --> struct Test is not a type here}Test;

它应该是

typedef struct _Test{    int n;    struct _Test *Next; // --> struct _Test is a type} Test;

因此,为了定义任何对象,它应该具有有效的数据类型,否则您将最终出错.

总结

以上是内存溢出为你收集整理的解决警告C4133:’=’:不兼容的类型 – 从struct到struct全部内容,希望文章能够帮你解决解决警告C4133:’=’:不兼容的类型 – 从struct到struct所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1218410.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存