Tagged Questions
0
votes
2answers
101 views
Java: When is the variable “this” initialized?
public class MainMDI extends javax.swing.JFrame {
private static MainMDI thiz;
public MainMDI() {
initComponents();
thiz = this;
}
}
I'm creating an MDI ...
0
votes
2answers
141 views
Multiple constructors in a Java class
I have some doubts about a constructor.
There is a class "Foo" that can be created in three different "status" we could call them "YOUNG", "ADULT" and "OLD".
I want to underline that they cannot be ...
0
votes
1answer
70 views
Using c++ static class member to control “mode” of all class instances
This is a simple problem, but I would like suggestions on how to solve it. I have a Policy class with constructor Policy::Policy(const int& mode).
Depending on the value of mode, the Policy ...
0
votes
3answers
128 views
c++ destructors
consider this scenario:
I need to create a ui for some settings. As, data and ui should be separated in theory, I defined a separate class which takes care of the configuration data. The question I ...
2
votes
3answers
159 views
Do accesses in a constructor to a shared static variable need to be synchronized?
I know that constructors cannot be synchronized in Java. Does this mean that if a constructor modifies a static variable within the class, and if constructors could be invoked from multiple threads, ...
2
votes
3answers
1k views
Static members and the default constructor C++
I came across a statement in my book that said:
You don't have to initialize a static member when you declare it; C++ will invoke the default constructor if you don't.
This really has me ...
7
votes
3answers
319 views
When do constructors of static members of template classes get called in C++?
There is plenty of information on when constructors of static members of ordinary classes are called. However, I am seeing some strange behavior with regard to template classes.
What should the ...
0
votes
3answers
174 views
is it possible to define the static member function of a class in .cpp file instead of its header file?
i am having a function which should be run only once for all instance of the class.i thought to use the static function calling method. all the web example shows that static function define in the ...
1
vote
3answers
1k views
How do I initialize static constant member variables in a subclass?
I'm trying to make a template which can make a few different types of classes that differ mainly in the name of things, i.e. a resistor should output "Resistance: 4 ohm" where a capacitor would output ...
2
votes
3answers
1k views
Calling subclass constructor from static base class method
Ok... in Objective C you can new up a subclass from a static method in the base class with 'new this()' because in a static method, 'this' refers to the class, not the instance. That was a pretty ...