作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在我的程序中尝试以下代码并收到错误。
abc rec; //abc is a struct which is having data member with void*.
rec.data = (price*)malloc(sizeof(price)); //rec.data is a void* and price is a structure
emp * e = (emp *)calloc(2, sizeof(emp)); // emp is a struct, which is member of struct price.
e[0].a = 1;
rec.data->emp = e; // error: 'void*' is not a pointer-to-object type
任何人都可以对此提出建议吗?
最佳答案
data
的类型为 void*
,因此 data->emp
的类型为 void
,其中你不能真正拥有,更不用说分配了。
关于c - 错误: 'void*' is not a pointer-to-object type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31931677/
我是一名优秀的程序员,十分优秀!