vote up 8 vote down star
1

Quick question:

int testfunc1 (const int a)
{
  return a;
}

int testfunc2 (int const a)
{
  return a;
}

Are these two functions the same in every aspect or is there a difference? I'm interested in an answer for the C-language, but if there is something interested in the C++ case I'd like to know as well.

flag

Is there a const keyword in C now? There didn't used to be but I'm not so familiar with the C 99 standard. – Onorio Catenacci Oct 2 '08 at 14:15
You don't need to be. C90 is enough. It wasn't in the original K&R C though. – Mark Baker Oct 2 '08 at 14:22
It is a keyword in C89 and ANSI. I don't know if it was a keyword back in the Kerningham and Richie days. – Nils Pipenbrinck Oct 2 '08 at 14:25

8 Answers

vote up 25 vote down check

const T and T const are identical. Pay attention to pointer precedence, however:

char const* is a pointer to a constant char (array), while char* const is a constant pointer to a mutable char (array).

link|flag
C does have const, given: static const char foo[] = "foo"; you better not alter foo. – James Antill Oct 2 '08 at 14:21
K&R C didn't have const; C90 (and C99) does. It's a bit limited compared to C++, but it is useful. – Mark Baker Oct 2 '08 at 14:21
I've already removed that nonsense from my text. ;-) – Konrad Rudolph Oct 2 '08 at 14:23
vote up 1 vote down

Yes, they are same for just int

and different for int*

link|flag
(const int *) and (int const *) are the same, they are just different from (int *const). – James Antill Oct 2 '08 at 14:22
vote up 1 vote down

I think in this case they are the same, but here is an example where order matters:

const int* cantChangeTheData;
int* const cantChangeTheAddress;
link|flag
Indeed, but int const * is the same as the first, so the order of the int and const doesn't matter, it's just the order of the * and the const that does. – Mark Baker Oct 2 '08 at 14:17
vote up 1 vote down

Prakash is correct that the declarations are the same, although a little more explanation of the pointer case might be in order.

"const int* p" is a pointer to an int that does not allow the int to be changed through that pointer. "int* const p" is a pointer to an int that cannot be changed to point to another int.

See http://www.parashift.com/c++-faq-lite/const-correctness.html#faq-18.5.

link|flag
vote up 2 vote down

There is no difference. They both declare "a" to be an integer that cannot be changed.

The place where differences start to appear is when you use pointers.

Both of these:

const int *a
int const *a

declare "a" to be a pointer to an integer that doesn't change. "a" can be assigned to, but "*a" cannot.

int * const a

declares "a" to be a constant pointer to an integer. "*a" can be assigned to, but "a" cannot.

const int * const a

declares "a" to be a constant pointer to a constant integer. Neither "a" nor "*a" can be assigned to.

static int one = 1;

int testfunc3 (const int *a)
{
  *a = 1; /* Error */
  a = &one;
  return *a;
}

int testfunc4 (int * const a)
{
  *a = 1;
  a = &one; /* Error */
  return *a;
}

int testfunc5 (const int * const a)
{
  *a = 1;   /* Error */
  a = &one; /* Error */
  return *a;
}
link|flag
vote up 10 vote down

The trick is to read the declaration backwards (right-to-left):

const int a = 1; // read as "a is an integer which is constant"
int const a = 1; // read as "a is a constant integer"

Both are the same thing. Therefore:

a = 2; // Can't do because a is constant

The reading backwards trick especially comes in handy when you're dealing with more complex declarations such as:

const char *s;      // read as "s is a pointer to a char that is constant"
char c;
char *const t = &c; // read as "t is a constant pointer to a char"

*s = 'A'; // Can't do because the char is constant
s++;      // Can do because the pointer isn't constant
*t = 'A'; // Can do because the char isn't constant
t++;      // Can't do because the pointer is constant
link|flag
vote up 0 vote down

This isn't a direct answer but a related tip. To keep things straight, I always use the convection "put const on the outside", where by "outside" I mean the far left or far right. That way there is no confusion -- the const applies to the closest thing (either the type or the *). E.g.,



int * const foo = ...; // Pointer cannot change, pointed to value can change
const int * bar = ...; // Pointer can change, pointed to value cannot change
int * baz = ...; // Pointer can change, pointed to value can change
const int * const qux = ...; // Pointer cannot change, pointed to value cannot change
link|flag
vote up 1 vote down

const int is identical to int const, as is true with all scalar types in C. In general, declaring a scalar function parameter as const is not needed, since C's call-by-value semantics mean that any changes to the variable are local to its enclosing function.

link|flag

Your Answer

Get an OpenID
or

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