Connecting Tech Pros Worldwide Help | Site Map

array initialization in initialization list.

  #1  
Old September 28th, 2006, 11:35 AM
toton
Guest
 
Posts: n/a
Hi,
I can initialize an array of class with a specific class as,
class Test{
public:
Test(int){}
};
Test x[2] = {Test(3),Test(6)}; using array initialization list. (Note
Test do NOT have a default ctor).
Is it possible to do so in the class parameter initialization using
specific ctor?
like
class TestContainer{
private:
Test _x;
public:
TestContainer(int size) : _x(Test(size) {}
};
This works.
class TestContainer{
private:
Test _x[2];
public:
TestContainer(int size) : ??? {} //how to do it like array
initialization?
};
In actual case Test class is a specific kind of semi-fixed-size
container (not defined in STL! ) which needs a size parameter. The
class like TestContainer holds such Test class two instance (and only
two). I know that an alternative is to store Test _x1, Test _x2; and in
initialization list TestContainer(int size) : _x1(Test(size) ,
_x2(Test(size)){} , or in general case, using an STL vector with
reserve space 2. Or storing a pointer instead of the object itself.
But my question is, In object initializer list can a array
initialization be called? If yes, what is the syntax?
Thanks
abir

  #2  
Old September 28th, 2006, 01:45 PM
Victor Bazarov
Guest
 
Posts: n/a

re: array initialization in initialization list.


toton wrote:
Quote:
Hi,
I can initialize an array of class with a specific class as,
class Test{
public:
Test(int){}
};
Test x[2] = {Test(3),Test(6)}; using array initialization list. (Note
Test do NOT have a default ctor).
Is it possible to do so in the class parameter initialization using
specific ctor?
No.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


  #3  
Old September 28th, 2006, 02:05 PM
David Harmon
Guest
 
Posts: n/a

re: array initialization in initialization list.


On 28 Sep 2006 03:50:03 -0700 in comp.lang.c++, "toton"
<abirbasak@gmail.comwrote,
Quote:
private:
Test _x;
public:
TestContainer(int size) : _x(Test(size) {}
Should be
TestContainer(int size) : _x(size) {}

Pay no attention to whether or not it resembles array initialization
syntax at this point.

See also "[10.6] Should my constructors use "initialization lists"
or "assignment"?" in Marshall Cline's C++ FAQ. You can get the FAQ
at:
http://www.parashift.com/c++-faq-lite/

  #4  
Old September 28th, 2006, 03:45 PM
mlimber
Guest
 
Posts: n/a

re: array initialization in initialization list.


toton wrote:
Quote:
Hi,
I can initialize an array of class with a specific class as,
class Test{
public:
Test(int){}
};
Test x[2] = {Test(3),Test(6)}; using array initialization list. (Note
Test do NOT have a default ctor).
Is it possible to do so in the class parameter initialization using
specific ctor?
You can't with arrays, but you can with std::vector (which you should
probably be using anyway,
http://www.parashift.com/c++-faq-lit...html#faq-34.1). For
instance:

#include <vector>
using namespace std;

template<typename T>
class Initializer
{
vector<Tv_;
public:
Initializer( const unsigned capacity=0 )
{
v_.reserve( capacity );
}

Initializer& Add( const T& t )
{
v_.push_back(t);
return *this;
}

operator vector<T>() const
{
return v_;
}
};

class Example
{
const vector<doublev_;
public:
Example( double d0, double d1, double d2 )
: v_( Initializer<double>( 3 )
.Add(d0)
.Add(d1)
.Add(d2) )
{}
// ...
};

Cheers! --M

  #5  
Old September 28th, 2006, 05:25 PM
Gavin Deane
Guest
 
Posts: n/a

re: array initialization in initialization list.



toton wrote:
Quote:
But my question is, In object initializer list can a array
initialization be called? If yes, what is the syntax?
Annoyingly, IIRC, arrays are the one thing that cannot be initialised
in the initialiser list as you would like to.

Gavin Deane

  #6  
Old September 28th, 2006, 06:05 PM
Victor Bazarov
Guest
 
Posts: n/a

re: array initialization in initialization list.


Gavin Deane wrote:
Quote:
toton wrote:
Quote:
>But my question is, In object initializer list can a array
>initialization be called? If yes, what is the syntax?
>
Annoyingly, IIRC, arrays are the one thing that cannot be initialised
in the initialiser list as you would like to.
No, structs are also that thing. Aggregates cannot be initialised
except with default values. There is a proposal on the table, IIRC,
that might change that.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
initialization of array as a member using the initialization list aaragon answers 2 November 2nd, 2008 05:05 PM
Character array Initialization Kannan answers 6 September 10th, 2006 12:15 AM
array initialization standard Stephen Mayes answers 4 November 14th, 2005 05:46 PM
How to initialize an array member in the member initialization list? jut_bit_zx@eyou.com answers 3 October 10th, 2005 01:15 AM