Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
3  
What do you want unmodifiable? The pointed-to ints? Then const int *x; means you can't modify the pointed-to value through that pointer. The pointers? Then int * const x; forbids modifying the pointers. – Daniel Fischer Nov 1 '12 at 16:39
If my int *x, is an array, then I want the values within this array to be unmodifiable. – monkeyking Nov 1 '12 at 16:46
Then you need const 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, if x points to an element of const int arr[3] = { 15, 7, 3 }; or so). – Daniel Fischer Nov 1 '12 at 16:50
int *x is not an array, it's a pointer. If you had declared int x[20] then the array would have been part of the consted area. But x is a pointer and its constness is independant of the one of p. – tristopia Nov 1 '12 at 16:50
Your edit comment is wrong in the sense that the const does exactly that: it tells that everything belonging to that struct isn'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
show 1 more comment

3 Answers

up vote 1 down vote accepted

To explain what you need to establish, when you write

point str;

point *p=&str;

Here p is a pointer to str which is of type point

When you declare it as const, it means that p is a constant pointer. This does not restrict the pointers that the structure may contain.

If you want the const ness to apply inside the structure, you have to define the pointers inside the structure also as const

typedef struct{
   const int *  x;
   const int *  y;
}point;

Again to push home my point declare the parameter as

    void get(point * const  p,int x, int y) 
   //Constant Pointer ( *to prevent p from pointing to anything else*)

    //    AND

   //Make the pointers inside point structure constant
   //( *to prevent the int pointers x & y from pointing to anything else*)

If the structure it is pointing to is also const use

      void get(const point * const p, int x, int y)
     //Constant Pointer to constant structure 
share|improve this answer
If my members of my struct are declared const, how do I input values in it in the beginning of my program. – monkeyking Nov 1 '12 at 16:55
By typecasting to a non const pointer. (int*)(p->x) = &whatever. While it might look like it would defeat the purpose of the constness. It can be very useful on big projects where you want to make sure that changes to a structure will be done only in a controlled unique place. – tristopia Nov 1 '12 at 16:57
Since the content of the pointer is a constant, it should be initialized during the declaration. – Desert Ice Nov 1 '12 at 16:59
IMO there's no point to consting the pointer itself (or any other function parameter). The constness of the pointed to area is important, it tells the reader that there are no side effects via this pointer, but the constness of the pointer itself conveys no useful information, neither for compiler nor for the programmer. – tristopia Nov 1 '12 at 17:07

If I understand your question correctly, you would like to get automatic propagation of constness of the entire struct object to the objects pointed by that struct members. I.e. if the struct object is not const, the arrays should be modifiable, while if the if the struct object is const, the arrays should not be modifiable.

If so, then, unfortunately, it is not achievable in C language.

In C++ it can be done by forcing the user to use accessor member function to access the data members (instead of accessing data members directly). But in C it simply can't be done.

share|improve this answer

That's because you change the memory content pointed to by another pointer than p.

p points on a structure containing 2 pointers to int. You don't change the memory p is pointing to, but another memory area. So the compiler is fine with that.

       +----------+
p ->   |    x     |  -> wherever  
       +----------+
       |    y     |  -> another place in memory
       +----------+

The constness od p is not inheritable. If you had written p->a = array; then the compiler would have complained. The const is only a contract saying that you won't change the memory through that pointer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.