I am trying to define a matrix like so I have a structure
typedef struct _struct {
int name;
int data;
} myDataType;
之后一是界定矩阵
int **myMatrix = calloc(size,sizeof(int*));
for()
// allocate rows except last index
myMatrix[last_index_in_matrix] = calloc(1,sizeof(myDataType));
问题在于,我无法获得我的Matrix[last_index].它所说的数据,也尝试了——和(实际上不知道何时使用什么)
request for member ‘data’ in something not a structure or union
什么是错的? 是否应当将实际守则张贴在后面? 如果不可能采用这种方法,那就能够提出不同的建议?
最新资料:我再说一遍,汇总表都暗中,只是要最后一点指出这一结构,一些评论没有考虑到这一点。 这是我以身作则的方式宣布的。