Initialisation lists are used to initialise class members in other than default manner. This is usually used in cases where class member is a class instance.
0
votes
1answer
15 views
workarounds for BOOST_THROW_EXCEPTION's missing ternary operator in initialization lists
I often end up using ternaries that throw exceptions which may seem a bit weird but save the day in initialization lists (hence that helps for writing sound constructors, hence that helps for RAII, ...
0
votes
1answer
69 views
C++ initialization list in second derrived class
I'm trying to write a relatively deep class heirarchy and my compiler keeps throwing "no matching function for call to [default constructor for bass class]". Here's the scenario:
Class A {
...
0
votes
2answers
119 views
Default constructor in template class with attribute of unknown type
I need a default constructor with no argument. How can I initialize attribute a which is of unknown type to me.
template <typename Type>
class Foo
{
public:
Foo() : a(), b(0) {} <---- ...
1
vote
1answer
54 views
how do I initialize a std::map in the base member initialization section in c++?
Basically I have a map as a member variable in a class that I would like to initialize with key,value pairs in the base member initialization section.
Parser::Parser()
:operations() //the ...
0
votes
1answer
63 views
Reinitialise asio::socket in class
I found out, that if I want to use boost::socket as a class member I must define it using initialization lists and it must be defined even before constructor dispatches.
That means, that I have to ...
1
vote
5answers
80 views
Is it required to define the initialization list in a header file?
Recently I created class Square:
=========header file======
class Square
{
int m_row;
int m_col;
public:
Square(int row, int col): m_row(row), m_col(col)
};
==========cpp file======
...
4
votes
2answers
83 views
F# array initialization with non-consecutive numbers
Is there a short notation to initialize F# array with multiples of N, where N > 1? For example N = 2:
{|2; 4; 6; 8; 10;|]
Maybe, something analogous to the default N = 1 case:
[|a..b|]
3
votes
2answers
159 views
Are there advantages or disadvantages to explicitly setting up an initialization list in the default constructor? [closed]
Are there any advantages or disadvantages to explicitly having a FULL initialization list for your C++ object constructors? (Full as in you have all of your members listed, even if we're just using ...
2
votes
2answers
76 views
Initialization function call whose effects are needed for the initialization list?
I have a base Image class with const field members:
class Image {
protected:
const int width;
const int height;
public:
virtual ~Image();
const int getWidth() const;
const int ...
0
votes
2answers
183 views
Base member initialization section C#?
Does a base member initialization section exist in C#? I tried searching and searching but kept coming up with questions regarding initializing the List class. The initialization list I am referring ...
0
votes
1answer
246 views
Initialize stringstream reference member in constructor initialization list with nothing
I tried to init a stringstream reference member with nothing, saying I wanted it to refer to null or just leave it un-initialized.
.hpp file
class Class{
private:
int n;
...
0
votes
2answers
240 views
Assigning values to const int in headerfile in c++ without initialization list
I got 17 integer constants that I'd like to have as private in my class. Is it really necessary to use initialization list?
I read somewhere that I can assign values to constants in the header file, ...
5
votes
1answer
319 views
Initializing member array in constructor initialization list (before C++11)
As far as I know, before C++11, the only way to initialize a member array in a constructor initialization list was to do, e.g., the following:
MyClass::MyClass(int arg) : member(arg), memberArray() {
...
1
vote
0answers
77 views
FILE*, fopen_s, and initialization lists
I have a class declared like this (only relevant parts shown):
class X
{
public:
X(int x);
private:
FILE *stream;
int _x;
}
The constructor opens a file:
X::X(int x) : _x(x)
{
...
7
votes
6answers
315 views
C++ - Run a function before initializing a class member
I have 2 resource managing classes DeviceContext and OpenGLContext both are members of class DisplayOpenGL. The resource lifetimes are tied to DisplayOpenGL. Initialization looks like this (pseudo ...
0
votes
4answers
433 views
C++ Constructors vs Initialization Lists speed comparisson
Are there any differences in execution time between constructors and initialization lists?(or is it just a matter of coding preference).
I have a set of objects that needs to be created frequently and ...
1
vote
3answers
732 views
Initialize array of char in initialization list of constructor in C++
Is it ok to use initialization like this?
class Foo
{
public:
Foo() : str("str") {}
char str[4];
};
And this?
int main()
{
char str[4]("str");
}
Both give me an error in gcc 4.7.2:
...
1
vote
2answers
101 views
C++ - Initializing class member with an instance
my question is as follows: Suppose I have:
class Foo
{
public:
Foo() {}
void setInt(int i) { myInt = i; }
int getInt() { return myInt; }
private:
int myInt;
};
class Bar
{
public:
...
0
votes
1answer
239 views
What can I put in initialization of an inherited class in Qt
I created a Qt class called video like following:
video.h
class Video : public QDjangoModel {
Q_OBJECT
// ...
public:
explicit Video(QObject *parent = 0);
// ...
};
video.cpp
...
1
vote
3answers
105 views
Class member without a default constructor
Suppose I have a class A without a default constructor, a factory method factoryA that
returns an object of type A, and a class B that has A as its member. I know that in this case the member of type ...
1
vote
2answers
151 views
Arrays in the initialization list of a constructor
I'm trying to figure out how to declare an array of an arbitrary size in the constructor's initialization list. If this isn't possible, what should I do instead?
For example:
class vectorOfInt
{
...
0
votes
1answer
61 views
Initializer lists with internal references
I would like to use an initializer lists for object initialization to simplify object management, but the issue is that objects reference each other.
//B::B(A &a) //The only available constructor ...
4
votes
2answers
299 views
can member functions be used to initialize member variables in an initialization list?
OK, member variables can be used to initialize other member variables in an initialization list (with care taken about the initialization order etc). What about member functions? To be specific, is ...
0
votes
2answers
269 views
C++ initialization list, Class in class (Aggregation)
I am writing a dish washer program, Dishwasher has a pump, motor, and an ID. Pump, motor, date, time are other small classes which Dishwasher will use. I checked with the debugger but when I create ...
4
votes
4answers
146 views
Can member variables be used to initialize other members in an initialization list?
Consider the following (simplified) situation:
class Foo
{
private:
int evenA;
int evenB;
int evenSum;
public:
Foo(int a, int b) : evenA(a-(a%2)), evenB(b-(b%2)), evenSum(evenA+evenB)
...
3
votes
3answers
114 views
C++ Constructor Understanding
Consider this constructor: Packet() : bits_(0), datalen_(0), next_(0) {}
Note that bits_, datalen_ and next_ are fields in the class Packet defined as follows:
u_char* bits_;
u_int datalen_;
Packet* ...
5
votes
4answers
188 views
Disadvantage to Large Initialization List?
At my employer, it is policy that we use initialization lists in the constructor because it is more efficient.
However, I am developing a class that has 45 data members requiring initialization. Per ...
5
votes
1answer
838 views
std::array initializer list initialization in initialization list
Although I much enjoy the new features in C++11, sometimes I feel like I'm missing some of its subtleties.
Initializing the int array works fine, initializing the Element2 vector works fine, but ...
1
vote
5answers
1k views
Initializing a reference to member to NULL in C++
Is it possible to initialize a reference member to NULL in c++?
I'm trying to something like this:
class BigClass
{
private:
Object m_inner;
public:
const Object& ReadOnly;
BigClass() : ...
0
votes
3answers
98 views
member variable
Can there be a member variable in a class which is not static but which needs to be defined
(as a static variable is defined for reserving memory)? If so, could I have an example? If not, then why are ...
3
votes
4answers
624 views
C++ initialization lists for multiple variables
I'm trying to learn how to initialize lists.
I have a simple class below and trying to initialize the list of variables. The first Month(int m): month(m) works. I'm trying to do something similar ...
3
votes
1answer
346 views
Qt C++ Initialization List Confusion
I'm getting started with Qt (and C++, to a lesser extent), and I wanted to be sure I fully understood the base code before continuing on. I understand that the first element in the initialization list ...
3
votes
3answers
291 views
Initialization lists in constructor
I've heard that the advantage of using initialization lists in constructor would be that there will be no extra copies of class type objects. But what does it mean for the following code in class T ...
27
votes
3answers
2k views
Why doesn't Java have intializer lists like in C++?
In C++, you can use an initializer list to initialize the class's fields before the constructor begins running. For example:
Foo::Foo(string s, double d, int n) : name(s), weight(d), age(n) {
// ...
7
votes
3answers
641 views
How to generate a vector with unique values?
I have this example to generate unique objects into a vector :
#include <iostream>
#include <vector>
#include <algorithm>
int v=0;
struct A
{
A() : refValue( v++)
{ ...
5
votes
3answers
103 views
Why does data get assigned without an extra copy being created, in an initialization list?
Parashift explains initialization lists well, but does not explain why an extra copy of a variable is created before assignment in the ctor body, but no extra copy is created when assigned through an ...
0
votes
3answers
2k views
Order of calling base class constructor from derived class initialization list
struct B { int b1, b2; B(int, int); };
struct D : B {
int d1, d2;
// which is technically better ?
D (int i, int j, int k, int l) : B(i,j), d1(k), d2(l) {} // 1st Base
// or
D (int i, int j, ...
5
votes
4answers
3k views
How do I initialize a stl vector of objects who themselves have non-trivial constructors?
suppose I have the following class:
class MyInteger {
private:
int n_;
public:
MyInteger(int n) : n_(n) {};
// MORE STUFF
};
And suppose this class don't have a default trivial constructor ...
0
votes
4answers
237 views
c++ self in initialisation list
i have this code snippet
class Osoba{
Osoba(char* imie,int wiek){
this->imie=new char[strlen(imie)+1];
...
0
votes
6answers
273 views
why C++ Initialization list is before brace?
I want to know what's difference in the following two class.
example 1:
class A
{
string name;
public:
A(const char* _name):name(_name){}
void print(){cout<<"A's ...
2
votes
2answers
421 views
How does initialization of two-dimensional arrays work?
came across the code shown below in a small C++ example:
int (*arr1)[ARRAY_SIZE];
int (*arr2)[ARRAY_SIZE];
int (*arr3)[ARRAY_SIZE];
then in the constructor of the class:
...
10
votes
6answers
5k views
C++ Initialization lists - I don't get it
In Effective C++, it is said that data elements in the initialization list need to be listed in the order of their declaration. It is further said that the reasoning for this is that destructors for ...
1
vote
2answers
131 views
Braces After Initialization Lists
class Foo
{
Foo(double InitValue): StoredDouble(InitValue)
{
}
double StoredDouble;
}
Is there a syntax that will allow me to skip out on the curly braces after the initialization ...
2
votes
1answer
705 views
C++ Inherited template classes & initialization lists
I have been converting some of my math classes to templates and to use initialization lists, and run into a problem when the inherited class needs to access base class data members on initialization.
...
1
vote
2answers
236 views
Base-from-Member Idiom in C++
The following code is from here:
#include <streambuf> // for std::streambuf
#include <ostream> // for std::ostream
class fdoutbuf
: public std::streambuf
{
public:
explicit ...
27
votes
10answers
15k views
C++ initialization lists
Internally and about the generated code, is there a really difference between :
MyClass::MyClass(): _capacity(15), _data(NULL), _len(0)
{
}
and
MyClass::MyClass()
{
_capacity=15;
_data=NULL;
...
3
votes
2answers
358 views
Pass 'this' object to an initialization list
I've reduced the problem down to the following sample code:
class Charizard { //truck
trainer &myTrainer;
public:
Charizard(trainer &tMyTrainer);
};
class trainer {
Charizard ...
0
votes
3answers
925 views
How can i initialize superclass params from within the child c-tor in C++?
Watch the following example:
class A {
public:
A(int param1, int param2, int param3) {
// ...
}
};
class B : public A {
public:
B() : m_param1(1), m_param(2), m_param(3), ...
5
votes
3answers
1k views
C++: Initialization of inherited field
I've a question about initialization of inherited members in constructor of derived class. Example code:
class A
{
public:
int m_int;
};
class B: public A
{
public:
...
5
votes
4answers
790 views
Writing a Prototype Constructor in C++
I am taking a quadratic expression, where y=ax^2 + bx + c with a,b,c are constants and x is a variable. Here is my class:
class quadratic {
public:
double evaluate(const double x);
void ...
