Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
629 views

Preventing call of a private constructor from within the class in java

Hi We can restrict the creation of object of a class by making its constructor private. But this constructor could still be called from within the class. Is there any way to prevent this in Java? ...
5
votes
4answers
181 views

How does this code create an instance of a class which has only a private constructor?

I'm working on a sound library (with OpenAL), and taking inspiration from the interface provided by FMOD, you can see the interface at this link. I've provided some concepts like: Sound, Channel and ...
3
votes
4answers
429 views

c++ private constructors

If I don't want to allow anyone to create an instance of my class except for my static functions (I think this is called singleton/factory?), is it enough to make the default constructor private, or ...
3
votes
1answer
155 views

In C++, can I represent a class type as a variable?

I would like to call a static method from a class that I'll determine at run-time, but which I know subclasses a given class. So let's say I have these classes class super { public: super(); ...
3
votes
6answers
208 views

How to use a object whose copy constructor and copy assignment is private?

In reading TCPL, I got a problem, as the title refered, and then 'private' class is: class Unique_handle { private: Unique_handle& operator=(const Unique_handle &rhs); ...
2
votes
3answers
194 views

Is this a good use of a private constructor?

Trying to learn something new every day I'd be interested if the following is good or bad design. I'm implementing a class A that caches objects of itself in a static private member variable ...
1
vote
4answers
113 views

Advice on Copy Constructor of a Class containing a non-copyable member reference

I have a class A which has an reference to an object of class B as a member. The copy constructor (and assignment operator) of class B is private. Do you think it is a valid and good idea to use the ...
1
vote
1answer
72 views

Generic object with private constructor

Here is my problem. I would like to have a class with a private constructor that can be created with more than one static method, exactly like Box.createHorizontalBox(). Where it gets complicated is ...
1
vote
3answers
541 views

c++: Private constructor means no definition of that classes objects inside headers?

Yet another question, go me!... Anyway, I have 2 classes with private constructors and static functions to return an instance of that class. Everything was fine, I have a main.cpp file where I managed ...
1
vote
4answers
2k views

How to instantiate an object with a private constructor in C#?

I definitely remember seeing somewhere an example of doing so using reflection or something. It was something that had to do with SqlParameterCollection which is not creatable by a user (if I'm not ...
0
votes
1answer
84 views

How to use objects that got the private copy-constructor and assignment-constructor? [closed]

Possible Duplicate: How to use a object whose copy constructor and copy assignment is private? In reading TCPL, I got a problem, as the title refered, and then 'private' class is: class ...
0
votes
1answer
162 views

Impossible to inherit from this object?

Following up on this question, people have suggested I go with "option 3" which might look like this: class b2Body { private: b2Body() {} friend class b2World; }; class Body : public b2Body { ...