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
2answers
50 views
Anyway to call CoInitialize() before an initialization list?
Here is my C++ code of a constructor of ThorDetectorSwitch.cpp file:
ThorDetectorSwitch::ThorDetectorSwitch() : _mcSwitch(__uuidof(MCLControlClass))
{
_A = WstringToBSTR(L"A");
_B = ...
1
vote
1answer
29 views
Getting address of parent in derived initialization list
Is there a standard-and-safe way of getting the address of one of the base classes in the child constructor initialization list?
Here is what I want to do:
I have a multiple classes which provides ...
0
votes
2answers
61 views
C++ Class Initialization List example
I am going through Chapter 17 in the new Stroustrup book and I am confused by initializing a class with an initialization list.
Example:
in .hpp:
class A
{
public:
A() : ...
0
votes
1answer
32 views
C++ 11 Segfault with several bools in initialization list
I wrote a simple class Actor with ints and a lot of bool members:
Here's an exerpt from the actor.cpp file
Actor::Actor ()
:X(0),Y(0),W(14),H(14),speedX(0),speedY(0)
...
1
vote
3answers
47 views
is there any difference between definition using initialization list and '=' character for primitive types in C++?
for example i want to define an integer . i can do it in two ways in C++:
int a = 10;
int a(10);
is there any difference between the two or it's just a matter of taste?
0
votes
1answer
40 views
C++ initialization lists multiple initializations
C++
#include <stdio.h>
class a
{
public:
int var1;
a(int var)
{
var1 = var;
printf("set var1 to %d\n", var1);
}
};
class b: ...
0
votes
1answer
41 views
How do I use an initialization list with a base class?
Given the following:
struct A
{
int foo;
int bar;
};
struct B : public A
{
int baz;
};
How would I construct a B with an initialization list that also constructs the elements in A? The ...
0
votes
1answer
26 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
75 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
154 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
61 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
71 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
121 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
88 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
175 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
80 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
212 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
292 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
281 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
461 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
80 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
337 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
559 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 ...
2
votes
3answers
916 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
115 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
259 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
123 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
155 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
63 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
337 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
284 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
151 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
197 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
904 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
656 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
366 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
330 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 ...
28
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
651 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
4k 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
243 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
275 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
425 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
132 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 ...
