J
Justin Robinson
Hi,
What does const mean when it appears at the _end_ of a function signature,
like this:
int f() const
{
return 50;
}
Is it the same if I put it in front like this:
const int f()
{
return 50;
}
Justin
What does const mean when it appears at the _end_ of a function signature,
like this:
int f() const
{
return 50;
}
Is it the same if I put it in front like this:
const int f()
{
return 50;
}
Justin