vote up 3 vote down star

The following code does not compile.


  int a=1,b=2,c=3;
  typedef const int & intlink;
  intlink arr[] = {a,b,c,8};

What C++ standard says about it? Is this compiler error?

P.S. I know I could declare class that contains reference and use it in array, but I really want to know why the code above doesn't compile.


Edit: The following code is a good workaround for my queistion.


struct cintref
{
    cintref(const int & ref) : ref(ref) {}
    operator const int &() { return ref; }
private:
    const int & ref;
    void operator=(const cintref &);
};

int main() 
{
  int a=1,b=2,c=3;
  //typedef const int &  cintref;
  cintref arr[] = {a,b,c,8};
}

It is possible to use struct cintref instead of const int & if you want to create the array of references.

flag

73% accept rate
1  
Even if the array was valid, storing a raw '8' value in it wouldn't work. If you did "intlink value = 8;", it would die horribly, because it's pretty much just translated into "const int & value = 8;". A reference must reference a variable. – Grant Peters Jul 22 at 11:00
2  
intlink value = 8; does work. check if you does not believe. – Alexey Malistov Jul 22 at 11:10
1  
As Alexey points out, it is perfectly valid to bind an rvalue to a const reference. – avakar Jul 22 at 11:57

6 Answers

vote up 14 vote down check

C++ Standard 8.3.2/4:

There shall be no references to references, no arrays of references, and no pointers to references.

link|flag
1  
What more is there to say? – polyglot Jul 22 at 11:13
vote up 7 vote down

References are not objects. They don't have storage of their own, they just reference existing objects. For this reason it doesn't make sense to have arrays of references.

If you want a light-weight object that references another object then you can use a pointer. You will only be able to use a struct with a reference member as objects in arrays if you provide explicit initialization for all the reference members for all struct instances. References cannot be default initalized.

Edit: As jia3ep notes, in the standard section on declarations there is an explicit prohibition on arrays of references.

link|flag
References are same in their nature as constant pointers, and therefore they take up some memory (storage) to point to something. – inazaruk Jul 22 at 10:14
2  
Not necesserily. The compiler might be able to avoid storing the address, if it's a reference to local object for instance. – EFraim Jul 22 at 10:15
2  
Not necessarily. References in structures usually take up some storage. Local references often don't. Either way, in the strict standard sense, references are not objects and (this was new to me) named references aren't actually variables. – Charles Bailey Jul 22 at 10:17
Well, those are compiler-dependent optimizations. In general case references do take some memory. – inazaruk Jul 22 at 10:17
8  
Yes, but this is an implementation detail. An object in the C++ model is a typed region of storage. A reference is explicitly not an object and there is no guarantee that it takes up storage in any particular context. – Charles Bailey Jul 22 at 10:19
vote up 4 vote down

An array is implicitly convertable to a pointer, and pointer-to-reference is illegal in C++

link|flag
5  
It is true you cannot have a pointer to a reference, but this is not the reason that you cannot have an array of references. Rather they are both symptoms of the fact that references are not objects. – Richard Corden Jul 22 at 10:17
vote up 1 vote down

A reference object has no size. If you write sizeof(referenceVariable), it will give you the size of the object referenced by referenceVariable, not that of the reference itself. It has no size of its own, which is why the compiler can't calculate how much size the array would require.

link|flag
vote up 1 vote down

Consider an array of pointers. A pointer is really an address; so when you initialize the array, you are analogously telling the computer, "allocate this block of memory to hold these X numbers (which are addresses of other items)." Then if you change one of the pointers, you are just changing what it points to; it is still a numerical address which is itself sitting in the same spot.

A reference is analogous to an alias. If you were to declare an array of references, you would basically be telling the computer, "allocate this amorphous blob of memory consisting of all these different items scattered around."

link|flag
vote up 1 vote down

Because like many have said here, references are not objects. they are simply aliases. True some compilers might implement them as pointers, but the standard does not force/specify that. And because references are not objects, you cannot point to them. Storing elements in an array means there is some kind of index address (i.e., pointing to elements at a certain index), and that is why you cannot have arrays of references because you cannot point to them.

Youse boost::reference_wrapper, or boost::tuple instead. or just pointers.

link|flag

Your Answer

Get an OpenID
or

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