extern const reference

I

Igor R.

Hello,

I've got the following code:

int main()
{
const extern int &ref;
{
int var = 5;
const int &ref = var;
}
int var = ref;
}

I.e., I'd like to define and initialize a const ref in a local scope,
but want to *declare* and to be able to use it in the outer scope. I
attempt to declare it as extern, but this doesn't link well, i.e.
"const int &ref = var;" isn't interpreted as the above extern
definition, but as another local variable.
Is it possible to do the above trick somehow? (I know I can
restructure the code as the last resort.)

Thanks.
 
A

Alf P. Steinbach

Hello,

I've got the following code:

int main()
{
const extern int&ref;
{
int var = 5;
const int&ref = var;
}
int var = ref;
}

I.e., I'd like to define and initialize a const ref in a local scope,
but want to *declare* and to be able to use it in the outer scope. I
attempt to declare it as extern, but this doesn't link well, i.e.
"const int&ref = var;" isn't interpreted as the above extern
definition, but as another local variable.
Is it possible to do the above trick somehow? (I know I can
restructure the code as the last resort.)

For your given example you can just do

int main()
{
int const ref = 5;
int var = ref;
}

If that doesn't solve your problem, then it may be because I failed to
understand what the original problem was.

This sounds suspiciously like a case of trying to solve problem X by
applying technique Y, then failing to make Y work, and asking about Y.
Don't ask about technique Y. Ask about the original problem X.

Cheers & hth.,

- Alf
 
J

Jens Thoms Toerring

Igor R. said:
I've got the following code:
int main()
{
const extern int &ref;
{
int var = 5;
const int &ref = var;
}
int var = ref;
}
I.e., I'd like to define and initialize a const ref in a local scope,
but want to *declare* and to be able to use it in the outer scope. I
attempt to declare it as extern, but this doesn't link well, i.e.
"const int &ref = var;" isn't interpreted as the above extern
definition, but as another local variable.
Is it possible to do the above trick somehow? (I know I can
restructure the code as the last resort.)

If you could do that in the sense you seem to want it to
work the last line would involve undefined behaviour since
you then would be using use a reference to a variable that
already has gone out of scope. What you seem to try to get
to work looks very similar to me to e.g.

int const & get_var( )
{
int v = 5;
return v;
}

int main( )
{
int const & ref = get_var( );
int var = ref;
}

And that, of course, doesn't work since the moment the
get_var() function is left nothing remains of its local
variable 'v', so holding on to a reference to it doesn't
make sense.

What is what you're trying to do meant to be good for? Per-
haps there's something that can be done but it's not really
clear to me what you want to achieve.

Regards, Jens
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top