After creating a instance of a class, can we invoke the constructor explicitly? For example
class A{
A(int a)
{
}
}
A instance;
instance.A(2);
Can we do this?
|
|
After creating a instance of a class, can we invoke the constructor explicitly? For example
Can we do this?
|
|||
|
|
|
|
You can use placement new: http://en.wikipedia.org/wiki/Placement_new which permits
However, from your example you'd be calling a constructor on an object twice which is very bad practice. Instead I'd recommend you just do
Placement new is usually only used when you need to preallocate the memory e.g. in a custom memory manager. |
||||||||
|
|
|
No you cannot do that. The only way to invoke a constructor is by the keyword "new". |
||
|
|
|
|
By the way, this sounds like a design flaw. Once an object is constructed there should never be a need to re-construct it. Such variable name reuse makes the code rather harder to understand. For that reason, making constructor-like functionality available through an extra function As Michael said, placement new could be used here but is really intended for different uses. Also, before constructing a new object in a memory location, you have to explicitly destroy the old object:
Also, EDIT To demonstrate that calling the destructor is really necessary (for non-POD), consider the following example code:
As expected, the program results in the following output:
… which means that the destructor for the first object is not called. The same goes for any resources that |
||||||||||
|
|
|
Just to summarize, the three ways to specify the explicit constructor are via
and flavors of those. The This strikes me as the more-functional way to go about this, especially for classes that are parts of frameworks and reused in libraries. If that is what you are interested in, work toward having all constructors, including any default one, deliver a fully-working instance. Exception Cases: There are things you might not have in the constructor operation if it is possible for them to fail, unless it is appropriate to throw an exception from the constructor. And some folks like having "blank" instances that are propogated using subsequent methods and even exposed-to-initialization members. It is interesting to explore ways to mitigate such situations and have robust instances that don't have bad states that need to be protected against in method implementations and in usage. PS: In some complex cases, it may be useful to have an initialized instance (reference) be delivered as the result of a function or of a method on a "factory" class, so that the intermediate, under-setup instance is never seen outside of the encapsulating factory class instance or function. That gives us, +4. A *instance = MakeAnA(2); +5. A *instance = InterestingClass.A(2); |
||||
|
|
|
No
Usually if a function/functionality is to needed in constructor as well as after object is construted it is placed in init() methode and used in constructor and in other place too. example:
|
||
|
|
|
|
No. Create a method for the set and call it from the constructor. This method will then also be available for later.
You'll also probably want a default value or default constructor. |
||||
|
|
|
I am pretty sure you can't do that. That's the whole point, constructor IS creation of an instance of the class. If a constructor is not called at all, or is called twice - which consequences could it have? What you could do of course, is extracting some constructor logic into the method, and calling that method both in the constructor and after creation of the object. |
||
|