Error[Pe513]: a value of type "int" cannot be assigned to an entity of type "char (*)[6]" D:\Passion
程序员文章站
2022-04-25 21:26:22
...
再移植程序过程中碰到的问题,这里提供一种情况以及解决方法。对于赋值操作
xxx=xxx();
左边xxx是A.c中的指针变量,xxx()是B.c中的函数,结果报错
Error[Pe513]: a value of type "int" cannot be assigned to an entity of type "char (*)[6]" D:\Passion
一种原因是再B.h中没有声明函数xxx(); 回到B.h中将xxx()函数声明一次就好。
上一篇: spring依赖注入和springAOP
下一篇: 浅析SpringAop编程之切入点表达式