Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
194 views

C++0x Member initialization without a constructor

In N3257 I found an example using initializing members without a constructor, which is fine. I guess that is possible, because it is a POD. template<typename T> struct adaptor { ...
4
votes
1answer
232 views

Initialization of member: bug in GCC or my thinking?

I've got an enum type defined in the private section of my class. I have a member of this type defined as well. When I try to initialize this member in the constructor body, I get memory corruption ...
3
votes
3answers
55 views

Execute checks before initialization list

I have a member of class A in my own class which constructor takes multiple parameters. Im forwarding parameters of my own class to the constructor of class A. But its important that these parameters ...
3
votes
6answers
499 views

Right way to conditionally initialize a C++ member variable?

I'm sure this is a really simple question. The following code shows what I'm trying to do: class MemberClass { public: MemberClass(int abc){ } }; class MyClass { public: MemberClass m_class; ...
2
votes
2answers
357 views

Memberwise Initialization [closed]

Possible Duplicate: C++ initialization lists What is the difference between member-wise initialization and direct initialization in a class? What is the difference between the two ...
1
vote
3answers
159 views

Complex statements in the member initialization part?

I have this: struct myClass{ multiset<string,binPred<string> > values ; myClass(const char param1, const char param2) : values(less<string>()) { } } ; I need to ...
0
votes
2answers
60 views

Java instance member initialization throws an exception

Let us say I have the following class public class A { private B b; } Now there is a factory for creating instances of B, but the creator method throws an exception public class BCreatorFactory ...
0
votes
4answers
136 views

How to refrain from CS2512 correctly

Please help me with the following problem: I have the following classes: class ChemicalElement { private: std::string _name; void Init(const std::string& name); public: ...