I have a struct which contains some pointers. I want the value of these to be unmodifiable. But simply writing const infront doesn't make the structs members unmutable
typedef struct{
int *x;
int *y;
}point;
void get(const point *p,int x, int y){
p->x[0]=x;//<- this should not be allowed
p->y[0]=y;//<- this should not be allowed
}
Can someone point me in the right direction.
EDIT:
So it would seem that there is no simple way of using the function prototype to tell that everything belonging to the struct should be unmodifiable
ints? Thenconst int *x;means you can't modify the pointed-to value through that pointer. The pointers? Thenint * const x;forbids modifying the pointers. – Daniel Fischer Nov 1 '12 at 16:39const int *x;in the struct definition. Note that the values in the array can still be modified through other pointers (which may invoke undefined behaviour, ifxpoints to an element ofconst int arr[3] = { 15, 7, 3 };or so). – Daniel Fischer Nov 1 '12 at 16:50int *xis not an array, it's a pointer. If you had declaredint x[20]then the array would have been part of theconsted area. Butxis a pointer and itsconstness is independant of the one ofp. – tristopia Nov 1 '12 at 16:50constdoes exactly that: it tells that everything belonging to thatstructisn't modified by that function. The error in your thinking is to confuse areas pointed to by p and those by p->x and p->y , they are not part of the tructure. Look at my ascii art below, your structure is only the drawn out part, the rest is distinct. – tristopia Nov 1 '12 at 17:13