Re: help! confusing "const"?
"Luna Moon" <lunamoonmoon@gmail.com> a ?crit dans le message de news:
22769cb2-7a19-4382-a246-52f84bbfb899@x41g2000hsb.googlegroups.com...
Hi all,
I just couldn't get myself clear about the usage of "const" in front
of and/or behind variables, pointers, classes, objects and
functions...
It's too confusing... any good clear article/tutorial that can help
me?
Thanks a lot!
int main()
{
int notConst = 1;
const int a1 = 0; // a constant integer
int const a2 = 0; // same as a1
a1++; // error a1 is const
a2++; // error a2 is const
const int& a3 = notConst;
int const& a4 = notConst;
notConst++; // Ok it is not const
a3++; // error a3 is const even if it is a reference to a non const
variable
a4 = a1; // error, a4 is just like a3
const int *a5 = ¬Const; // pointer to a const value (notConst can be
changed but not via a5)
int const* a6 = &a1; // same as a5
// now it is getting interesting
*a5 = 45; // error trying to change the value a5 is pointing to
a5 = NULL; // ok the value a5 was pointing to is not changed.
a6 = ¬Const; // ok a1 has not changed
*a6 = 7; // error notConst cannot be changed via a6
// same error here as with a3 and a4
const& int a7 = a3;
a7++; // error
a7 = a3; // error
// a8 is a const pointer to a non const int
int* const a8 = &a1; // error must point to a non const value
int* const a9 = ¬Const; // ok
*a9 = 8; // ok, the pointer has not changed, only the value it point to
a9 = NULL; // error, trying to change the pointer
// const pointer to a const value
const int* const a10 = ¬Const;
*a10 = 9; // error
int const* const a11 = ¬Const; // same as a10
int const* const a12 = &a1;
a12 = NULL; // error
*a2 = 99; // error
return 0;
}