3
votes
6answers
90 views

Using 'this' when initializing an instance variable in java?

I've seen this used when declaring an instance variable in IB's API, but this seems like a bad idea. Is assignment guaranteed to occur after this has been fully constructed? Does it matter? I thought ...
2
votes
4answers
53 views

Delaying trait initialization

I need a smart mechanism for component composition which allows mixed in traits to initialize after the composed component. The following throws a NullPointerException: class Component { def ...
0
votes
9answers
165 views

Inheritance in c++. Why is it wrong?

class Human { protected: string name; public: Human () : name ("Jim") {} Human (string n) : name (n) {} }; class Adult : public Human { private: string ...
0
votes
2answers
42 views

Initializing a non-static class with a texture2d variable

I'm learning XNA (and C# in general), and while trying to write my own little sidescroller for learning purposes, I stumbled on the following problem. The level is build from tiles, and since I don't ...
0
votes
1answer
18 views

boost char_ptr_holder instantiation

I'm trying to instantiate the following class defined in the boost libraries defined in boost/interprocess/detail/segment_manager_helper.hpp template<class CharType> class char_ptr_holder { ...
2
votes
3answers
44 views

Calling the constructor and initializing

What is the main different of these 2 and why doesn't the second one work when like this? template <class T> MyStack<T>::Node::Node(T& input, Node* head):next(head),value(input) {} ...
0
votes
1answer
53 views

How to properly initialize objects in objective c with ARC

For many classes there are initXXX methods and typeXXX methods, for example: NSNumber *n1 = [[NSNumber alloc] initWithInt:1]; NSNumber *n2 = [NSNumber numberWithInt:1]; I've read about manual ...
0
votes
2answers
133 views

Initialization of const array in C++ [duplicate]

I need to initialize a const int array in a class constructor via initialization list in C++. I know that there is an easy solution of this problem based on using extended initialization list. ...
0
votes
1answer
72 views

design and initialization of data in derived classes

I have the following hierarchy: Base_class | Traits_class | Concrete_class Now the thing is that the data is contained in the Base_class (it needs to be there because the ...
3
votes
4answers
172 views

Initialize field before super constructor runs?

In Java, is there any way to initialize a field before the super constructor runs? Even the ugliest hacks I can come up with are rejected by the compiler: class Base { Base(String someParameter) ...
4
votes
2answers
94 views

String removed after constructor initialize on if statement on C++

I'm experiencing a extrange behaviour on C++ (MVS 2010) when initializing on constructor a class called ManageRenderListenerCommand. That is implemented as a Command design patter, where ...
0
votes
1answer
114 views

having multiple constructors in ruby [duplicate]

is there a way to have multiple “initialize” methods in ruby? For example: one method excepting one argument while another excepts three ? Something like class One def initialize (a) puts ...
1
vote
1answer
67 views

C++ constructor initialization reference assignment

I am sure this question has been asked before. But I cannot seem to find the exact answer that I am looking for. Basically I am trying to create an object of the class as a member of the other class ...
5
votes
3answers
332 views

Why can't we initialize class members at their declaration?

I wonder if there is a reason why we can't initialize members at their declaration. class Foo { int Bar = 42; // this is invalid }; As an equivalent of using constructor initialization lists. ...
1
vote
5answers
160 views

How to initialize an array of Point? [duplicate]

I need to initialize an array of three points. I want to write it like below, but only once for three elements. Point P = new Point { X = 0, Y = 1 }; Point[] P = new Point[3];// <---- ? How to ...
0
votes
2answers
40 views

Are `initialize` method and constructors the same?

Is Ruby initialize method the same as constructors in PHP or is it something else?
-3
votes
2answers
63 views

Java: Initialiasing objects inside or outside the constructor? [duplicate]

I am interested in understanding whether there is any difference between initialising an object inside or outside the constructor public class HTMLTable { int value1; Scanner user_input; public ...
0
votes
4answers
167 views

C++ constructor initialization list alternative in C?

In C++, classes constructors can use initialization lists, which I am told is a performance feature that improves by avoiding extra assignments. So I wonder if there is a similar approach to achieve ...
1
vote
2answers
25 views

Using an intermediate result to initialise several attributes

I have a class whose constructor does roughly this: class B; class C; class D; class A{ private: B b; C c; public: A(istream& input){ D d(input) // Build a D based on input b = ...
6
votes
1answer
200 views

Simple program using uniform initialization to construct an object fails to compile

Consider the following program: struct X { X(int, int) { } X(X&&) { } }; int main() { X x( {0, 1} ); // Doesn't compile on ICC 13.0.1, compiles on // Clang ...
2
votes
3answers
63 views

initialization ignores constructor templates

While pursuing some errors, I stumbled upon the following behavior of initialization, which seems odd to me: While initialization checks for existing constructors, there seem to be cases were ...
1
vote
2answers
75 views

Constructor call in inherited classes

Consider the following code: class A { public: int a; }; class B : public A { public: B() { std::cout << "B[" << a << "]" << std::endl; } }; class C : public B { ...
1
vote
2answers
55 views

Dilemma in calling constructor of generic class

I have this generic singleton that looks like this: public class Cache<T> { private Dictionary<Guid, T> cachedBlocks; // Constructors and stuff, to mention this is a singleton ...
0
votes
1answer
43 views

constructor initialization list execution order with delegated constructors

I have a tricky C++ question: When you have a constructor initialization list with delegated constructors, what is the list execution order? There exist two conflicting standard rules here: 1.) The ...
0
votes
4answers
148 views

Python Instantiate Class Within Class Definition

I am attempting to add a variable to a class that holds instances to the class. The following is a shortened version of my code. class Classy : def __init__(self) : self.hi = "HI!" # ...
0
votes
2answers
60 views

Initialize a pointer to primitive to a temporary object

I think that this is valid code in MSVC: MyClass* pMc = &MyClass(); However, when I try to do the same thing with primitive data-types I'm getting a compilation error. int* pInt = &int(); ...
12
votes
3answers
222 views

Are fields initialized before constructor code is run in Java?

Can anyone explain the output of following program? I thought constructors are initialized before instance variables. So I was expecting the output to be "XZYY". class X { Y b = new Y(); X() ...
1
vote
1answer
65 views

Can a class initialize its non-immediate base classes in its member initialization list?

The following code is excerpted from Apache C++ Standard Library User's Guide class DerivedOutputStream : public std::ostream { public: DerivedOutputStream(): std::ios(0), ...
2
votes
4answers
53 views

Name hiding in constructor initialization list

I want to modify a constructor to use an initialization list as in the following example: class Foo { public: Foo(std::wstring bar); private: std::wstring bar; }; // VERSION 1: ...
8
votes
2answers
170 views

Understanding copy-initialization in C++, compared to explicit initialization

Why does the first commented line compile correctly, whereas the second doesn't? Why can a be given itself as a constructor argument, but b can't? Aren't the two doing the same thing? class Foo { ...
2
votes
2answers
120 views

Scala - initialization order of vals

I have this piece of code that loads Properties from a file: class Config { val properties: Properties = { val p = new Properties() ...
1
vote
4answers
94 views

Changing initialization order in constructor

class a { public: a() : b(5), a1(10) //will firstly initialize a1 then b, so order here doesn't matter int a1; private: int b; } The question is how to change the order (to have b ...
2
votes
2answers
94 views

Initilisation of variable in constructor not working but instead giving me a random number

As you probably gathered from the title I'm having an error initialising the variable 'passNum' in the constructor of my file 'booking.h' The file contains the booking class for a flight reservation ...
1
vote
1answer
54 views

Where to do the work, inside the __construct() or outside?

I've written a user class based on other supposedly high quality, secure classes I found online (although mixing some of them since, from what I've learned, none was actually that secure). The thing ...
0
votes
1answer
109 views

Passing object Scene to JavaFX window using main parameters in Scala

I want to use this code to display generic Javafx Scene from my program class JFXWindowDisplay(myScene:Scene) extends Application { def start( stage: Stage) { stage.setTitle("My JavaFX ...
0
votes
3answers
186 views

Initializing an object inside the constructor and not in initialization list

I've got the following class holding 3 datatypes: class CentralBank{ MaxHeap richestBanks; HashTable banks; AccountTree accounts; public: CentralBank(int numAccounts, Account* ...
0
votes
2answers
55 views

Redefining variables of a Java Class during an onCreate call?

public class Country implements ICountry { int stability = 2; } Country poland = new Country(stability = 3); What I'm trying to do is extend an interface(ICountry) with a new class("Country") ...
0
votes
0answers
38 views

WINHTTP_CURRENT_USER_IE_PROXY_CONFIG default initialization

i am using WINHTTP_CURRENT_USER_IE_PROXY_CONFIG in my application for IE proxy config. I am initializing in my constructor as this memset( &proxyConfig, 0, ...
2
votes
2answers
59 views

Is it safe to initialize a member using a member initialized earlier in initializer list?

Is the following code safe or does it lead to undefined behavior in C++03? class Aries { public: Aries() : Taurus("foo") , Leo(Taurus + "bar") {} private: string Taurus; const string ...
1
vote
4answers
237 views

C++: Classes & Constructors: Using Initialization Lists to Initialize Fields

Full code. Line specified later. #include <iostream> #include <string> using namespace std; class X { private: int i; float f; char c; public: X(int first=1, ...
1
vote
3answers
724 views

C++ defining a constant member variable inside class constructor

Usually when you have private member variables in your class, which is constant and only has a getter, but no setter, it would look something like this: // Example.h class Example { public: ...
0
votes
2answers
50 views

How to define a method and attribute to my appended div?

I have DIVs dynamically appended to the DOM. I want each of them to have some method, like when I click a button inside the div, the div will be removed from the DOM; and some attributes that I can ...
1
vote
2answers
167 views

Scala strange behavior in class/object initialization [duplicate]

Possible Duplicate: Scala and forward references Is there any rationale why the following works in Scala: Version 1 object Strange extends App { val x = 42 Console.println(x) // => ...
1
vote
4answers
75 views

Struct Initialization Arguments

I have a struct, player, which is as follows: struct player { string name; int rating; }; I'd like to modify it such that I declare the struct with two arguments: player(string, int) it assigns ...
1
vote
2answers
187 views

No default constructor exists for class but non default passed

My Thing class is derived from Entity class which has the following constructor Entity::Entity(string sNames, double xcord, double ycord) :m_sName(sNames), m_dX(xcord),m_dY(ycord){} Thing's ...
0
votes
2answers
77 views

Passing in a large list of values into a constructor to initialise finals.

So imagine we have a situation like this: public class Bar1 { public final int VALUE1; public final double VALUE2; public final String NAME; /*DOZENS OF FINALS!*/ public ...
1
vote
2answers
154 views

Assigning Value to Array in Constructor

I'm working at creating a class that is a binary tree. I would like to simplify this by creating a class that stores the data in an array, and then go back and make the magic happen. However, the ...
7
votes
6answers
320 views

C++ - Run a function before initializing a class member

I have 2 resource managing classes DeviceContext and OpenGLContext both are members of class DisplayOpenGL. The resource lifetimes are tied to DisplayOpenGL. Initialization looks like this (pseudo ...
0
votes
3answers
186 views

Initialize public attributes with argument from class constructor in c++

I have a class implemented in a .cpp file as follow : #include <ctime> #include <iostream> // les 3 lib boost/random nécessaire a généré les radiuses #include ...
0
votes
1answer
196 views

how to initialize data member array of a struct with null values?

Here is my struct (Its in private section of Datastructure class) private: // this is the main node pointer array to keep // track of buckets and its chain. struct Node { /** member ...

1 2 3 4 5