Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
115 views

Why am I forced to reference types in unused constructors?

Let's say that I have a class (ClassA) containing one method which calls the constructor of another class, like this: public class ClassA { public void CallClassBConstructor() { ...
3
votes
7answers
252 views

“this” Cannot Be Used As A Function

In C++ I'm attempting to emulate how Java handles calls to it's constructor. In my Java code, if I have 2 different constructors and want to have one call the other, I simply use the this keyword. ...
3
votes
3answers
200 views

Class constructor not called when class registration is done in that class constructor

I am writing a simple dependency injection / inversion of control system based on a TDictionary holding abstract class references with their respective implementor classes. My goals are: Avoid ...
3
votes
6answers
257 views

Returning in a static initializer

This isn't valid code: public class MyClass { private static boolean yesNo = false; static { if (yesNo) { System.out.println("Yes"); return; // ...
2
votes
4answers
179 views

Populate Property Object during Property Call

I'd like to know whether this approach is correct or if their are better ways of doing this. I have what is basically a Person class which has a number of other classes as variables, each of the ...
1
vote
4answers
112 views

jQuery style Constructors in PHP

Is there a way to instantiate a new PHP object in a similar manner to those in jQuery? I'm talking about assigning a variable number of arguments when creating the object. For example, I know I ...
0
votes
5answers
89 views

C++ templated class and init in constructor

I have a templated class, Foo : template <class A, class B> class Foo { public: Foo(A &aInstance); private: Attr<Foo> _attr; }; Then I have another templated class called ...
0
votes
2answers
273 views

Problems in initializing member of a template class

My code does not compile. Below is my code template <typename T> class TemplateClass { const T constMember; public: TemplateClass() { constMember = T(); } }; ...
0
votes
1answer
60 views

Responding to application-killing events during class initialization

When starting my application, I have a couple of classes which are required to read certain files in order to create a set of default data. The logical place (to me) to do this is in a Shared class ...