Tagged Questions
The initialization-list tag has no wiki summary.
13
votes
6answers
1k views
Python: Automatically initialize instance variables?
I have a python class that looks like this:
class Process:
def __init__(self, PID, PPID, cmd, FDs, reachable, user):
followed by:
self.PID=PID
self.PPID=PPID
...
12
votes
3answers
2k views
Initialize parent's protected members with initialization list (C++)
Is it possible to use the initialization list of a child class' constructor to initialize data members declared as protected in the parent class? I can't get it to work. I can work around it, but it ...
9
votes
7answers
1k views
C++: Initialize a member pointer to null?
I have a class that looks like:
class Foo
{
public:
Foo();
virtual ~Foo();
private:
Odp* bar;
};
I wish to initialize bar to NULL. Is this the best way to do it?
Foo::Foo() : ...
7
votes
3answers
277 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++)
{ ...
6
votes
5answers
2k views
Benefits of Initialization lists
Of what I know of benefits of using initialization list is that they provide efficiency when initializing class members which are not build-in. For example,
Fred::Fred() : x_(whatever) { }
is ...
5
votes
3answers
76 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 ...
5
votes
4answers
334 views
Writing a Prototype Constructor in C++
homework help time!
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 ...
5
votes
4answers
227 views
How to catch the exception in initialization list?
I have a question about how to catch the exception in the initialization list.
For example, we have a class Foo derived from Bar
class Foo {
public:
Foo(int i) {throw 0; }
}
class Bar : public ...
4
votes
4answers
251 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 ...
4
votes
5answers
2k views
C++ Constructor initialization list strangeness
I have always been a good boy when writing my classes, prefixing all member variables with m_:
class Test {
int m_int1;
int m_int2;
public:
Test(int int1, int int2) : m_int1(int1), ...
3
votes
4answers
108 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
134 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
2answers
140 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 ...
3
votes
3answers
300 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:
...
3
votes
3answers
204 views
Constructor initializer list: code from the C++ Primer, chapter 16
Toward the end of Chapter 16 of the "C++ Primer" I encountered the following code (I've removed a bunch of lines):
class Sales_item {
public:
// default constructor: unbound handle
...
3
votes
3answers
596 views
C++ Initialization list and memory alloc
Is the following valid?
class myClass
{
private:
...
int m_nDataLength;
boost::shared_array<int> m_pData;
...
public:
myClass(): ..., m_nDataLength(10), ...
2
votes
3answers
75 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 ...
2
votes
2answers
219 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:
...
2
votes
1answer
264 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
105 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 ...
1
vote
2answers
141 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 ...
0
votes
4answers
62 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
65 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 ...
0
votes
4answers
137 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
3answers
325 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), ...