typedef char ElementType[15];那么ElementType Data这个ElementType怎么理解啊ElementType[15] 不是代表char吗,把ElementType单独拿出来怎么理解
按照语法要求,
typedef char ElementType[15]
是指对ElementType
为char[15]
,不是ElementType[15]
为char
。