如何在标题中声明extern 2d-array?
发布时间:2020-12-16 03:10:31 所属栏目:百科 来源:网络整理
导读:我们在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数组包
我们在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]; 否则,编译器将无法计算第一行之后的偏移量. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |