1
vote
1answer
65 views

My constructor specifies at least one value for construction, and yet it can be default constructed

Take the following class: class Foo{ public: Foo(std::string bar_, int baz_ = 7) :bar(bar_) ,baz(baz_) {} private: std::string bar; int baz; }; Since Foo(std::string bar_, ...
3
votes
4answers
181 views

Initalize a 2x2 matrix in a class default constructor

I'm trying to create a 2x2 matrix-class in C++ and want to initialize the matrix to an identity matrix through the default constructor. My class is: class Matrix2x2 { public: Matrix2x2(); ...
3
votes
2answers
415 views

C++ default constructor, initializing pointer with new object

I have the following problem: In myClass I want to default initialize a pointer to yourClass, with a new yourClass adress. Unfortunately, if I want to delete the pointer at any point I get a (core ...
1
vote
3answers
112 views

c++ class in a class default constructor

My concern is a default constructor and its initialisation list. In a simple case it's clear, like: class A { protected: double d1; //classB obj1; //how to initialize this one in a ...
0
votes
2answers
86 views

got C2758 error for my third party call

I declared my class as follows in my "first.h" : class MyClass { public: MyClass ( cv::Mat& _model ) : tmpM ( _model ) { }; private: cv::Mat& tmpM; } then in "first.cpp", I used ...
0
votes
2answers
124 views

Value initialization on explicit constructor call in C++? [duplicate]

Possible Duplicate: What do the following phrases mean in C++: zero-, default- and value-initialization? There are multiple places where people have said that an explicit call to the class ...
4
votes
1answer
114 views

Behaviour of Mutlple inheritence in python

In [5]: class a(object): ...: def __init__(self): ...: print "In class a" ...: self.a = 1 ...: In [6]: class b(object): ...: def __init__(self): ...: ...
5
votes
2answers
560 views

Default constructor defined with default arguments outside the class definition, why does this work? and what happens with templates involved?

I am aware this is bad form and that default-values should be specified in the declaration, but if you would please indulge me for a moment.. why does this compile? and what is happening exactly? ...
2
votes
2answers
206 views

What is the code : base()

What is the purpose of base() in the following code? class mytextbox : TextBox { public mytextbox() : base() { this.Text = "stack"; } } Why At design time messages are ...
1
vote
2answers
1k views

Class inherited from class without default constructor

Right now I have a class A that inherits from class B, and B does not have a default constructor. I am trying the create a constructor for A that has the exact same parameters for B's constructor, but ...