It's common to have reference bound to a simple object as,

T& t = *new T;

But, how to relate a reference with the output of new[] ?

T& ??? = *new T[size];

[Note: Here is one possible way, but I think there should be some better way out, which gives the effect of array.]

Edit: This question is not about good/bad coding practice or if this is common/uncommon to use. I wanted to know if this is syntactically possible or not?

link|improve this question

3  
It's certainly not common, nor should it be. Perhaps you meant dereferencing a pointer variable, as opposed to a new expression directly? – Luc Danton Jul 24 '11 at 6:00
May be less common, I have seen this being used. One popular example can be from Bjarne's web page: www2.research.att.com/~bs/bs_faq2.html#new-java – iammilind Jul 24 '11 at 6:01
I agree that's not common, for sure, but how are you intending to use the newly-allocated array? I can't fathom what that would even look like. I would just use a pointer and access that pointer the same as an array. – Jim Buck Jul 24 '11 at 6:02
1  
Actually, on that page, Bjarne is basically saying not to do that. – Jim Buck Jul 24 '11 at 6:04
1  
@iammilind: That example is specifically called out as an anti-pattern; an example of what not to do. – Nicol Bolas Jul 24 '11 at 6:05
show 9 more comments
feedback

1 Answer

It's common to have reference bound to a simple object as,

No, it isn't. That kind of thing is functional, well-defined C++ code. But it is generally bad form. It forces you to later do this:

delete &t;

This again is functional and well-defined by the specification. But it is terribly ugly and gives the wrong impression about what the code is doing.

how to relate a reference with the output of new[] ?

It's unnecessary. In C and C++, pointers and arrays are virtually the same thing (technically, arrays automatically are converted to a pointer to the first element, if they need to). So you can do this:

T *t = new T[5];
t[4].stuff();
link|improve this answer
1  
By '[they] are virtually the same thing', you're then saying that they not, in fact, the same thing. And they indeed aren't. – Luc Danton Jul 24 '11 at 6:11
@Luc Danton: For all practical purposes, they're the same thing. – Nicol Bolas Jul 24 '11 at 6:14
But it is generally bad form; can you point out some standard reference/material for this ? Bjarne's link I posted in comments don't suggest that. – iammilind Jul 24 '11 at 6:17
Except for the purposes of having a size encoded in the type and well-defined semantics regarding ownership. Those two things are 'practical' I would think. – Luc Danton Jul 24 '11 at 6:17
@iammilind: The link you posted specifically says not to do that. It's not specifically talking about storing a pointer in a reference, but it's clearly intended to mirror Java-style (which is what it's saying you shouldn't do in C++). If what you are talking about were truly "common", you should have no problem linking to other examples. I've been programming C++ professionally for a decade, and I've never seen anyone do that. – Nicol Bolas Jul 24 '11 at 6:23
feedback

Your Answer

 
or
required, but never shown

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