前端之家收集整理的这篇文章主要介绍了
如何在标题中声明extern 2d-array?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们在LCD.c中有这个声明:
unsigned char LCD[8][64] = {((unsigned char) 0)};
在LCD.h中,我们想要的是:
extern unsigned char LCD[][];
我们得到这个错误:
Error[Pe098]: an array may not have elements of this type
您至少需要为2-D数组包含最右边的列大小.你可以这样声明:
extern unsigned char LCD[][64];
否则,编译器将无法计算第一行之后的偏移量.
原文链接:https://www.f2er.com/c/112358.html