Say I have the following:
struct datatype {
char varname[varlen];
double value;
};
struct mat {
int nrow;
int ncol;
dataype **val;
};
struct group {
char name[namelen];
mat TBI;
};
struct sim {
char name[namelen];
group *bucket;
};
int init_datatype(datatype *data,char *name) { /* initialize datatype */
char *memptr;
memptr = (char*)memcpy((*data).varname,name,varlen);
if (memptr==NULL) {
printf("ERROR copying datatype name\n");
return 1;
}
(*data).value = 0;
}
int init_mat(mat *matrix,int r,int c) { /* initialize mat */
int i,j;
int err = 0;
(*matrix).nrow = r;
(*matrix).ncol = c;
(*matrix).val = (datatype**)malloc(sizeof(datatype*)*(*matrix).nrow);
if ((*matrix).val==0) {
printf("!!! ERROR: malloc failed for (*matrix).val[r], ufuncts.cpp\n");
return 1;
}
for (i=0; i<(*matrix).nrow; i++) {
(*matrix).val[i] = (datatype*)malloc(sizeof(datatype)*(*matrix).ncol);
if ((*matrix).val[i]==0) {
printf("!!! ERROR: malloc failed for (*matrix).val[r][c], ufuncts.cpp\n");
return 1;
}
for (j=0; j<(*matrix).ncol; j++) {
err = err + init_datatype(&(*matrix).val[i][j],"");
}
}
if (err>0) {
return 1;
}
return 0;
}
int init_group(group *grp) { /* initialize group */
name[0] = '\0';
return init_mat(&(*grp).TBI,3,3);
}
extern sim simdata;
int grpfunc(group *grp) {
group grp1;
grp1.TBI = (*grp).TBI;
grp1.TBI.val[1][2].value = 8.3;
(*grp).TBI = grp1.TBI; /* -------------> Does this statement change
(*grp).TBI so that when grp1.TBI goes out of
scope, the pointers of (*grp).TBI now point
to junk values? */
return 0;
}
int main() {
int err = 0;
simdata.name[0] = '\0';
simdata.bucket = (group*)malloc(sizeof(group)*2);
if (simdata.bucket==NULL) {
printf("ERROR: unable to size bucket.\n");
return 1;
}
err = init_group(&simdata.bucket[0]);
err = init_group(&simdata.bucket[1]);
simdata.bucket[0].TBI.val[1][2].value = 5.3;
err = grpfunc(&simdata.bucket[0]);
return 0;
}
Is this valid? Do I have to declare the structs like struct group *bucket? In my program, the values of simdata.bucket[0].TBI are different inside the grpfunc() function (just before the return statement) and after the gprfunc() function. There could be mistakes elsewhere in the program, but I haven't been able to find any. I don't get a run time error or any warnings from the compiler (Microsoft VS 2008). So I wanted to ask if the way I've written it is correct. That is, is my struct and struct pointer usage correct? Thanks for any help!
EDIT: added a commented question in the function grpfunc() - does (*grp).TBI = grp1.TBI change (*grp).TBI so that when grp1.TBI goes out of scope, (*grp).TBI members now point to junk values (locations)?
EDIT2: I added the function:
int makemat(mat *A,mat B) {
int i,j;
if ( ((*A).nrow!=B.nrow)||((*A.).ncol!=B.ncol) ) {
printf("Incompatible matrices for assignment.\n");
return 1;
}
for (i=0; i<(*A).nrow; i++) {
for (j=0; j<(*A).ncol; j++) {
(*A).val[i][j].value = B.val[i][j].value;
}
}
return 0;
}
And then in grpfunc(), changed grp1.TBI = (*grp).TBI; to makemat(&grp1.TBI,(*grp).TBI); and (*grp).TBI = grp1.TBI; to makemat(&(*grp).TBI,grp1.TBI);. This seems to have fixed the problem, but is it correct? Is there an easier/better way?
data->valueis shorthand for(*data).value, some goes for the other lines where you have(*ptr_struct).member. – AusCBloke Mar 21 '12 at 21:48(*matrix).nrow = r;you can usematrix->nrow = r;, which looks simpler. Also: checking the return value from memcpy() makes no sense. Also: add semicolons after your struct definitions. Also a struct definition is not a typedef. Are you compiling with a C++ compiler, by any chance? – wildplasser Mar 21 '12 at 21:51