1
vote
1answer
30 views

Syntax Of Static Constructor in Actionscript-3?

How do I define a static constructor that is run when class is initialized ? I can't get it right: // version a: {} // version b: static {} // version c: static function Foo() {} // version d: ...
1
vote
1answer
48 views

Double Constructor Code Blocks, Static code block in Java

I stumbled upon this block of java code that seems to defy the syntax rules: 1. public class Sequence { 2. Sequence() { System.out.print("c "); } 3. { System.out.print("y "); } 4. ...
0
votes
6answers
74 views

Constructors called due to static initialization

I am going through Thinking in Java by Bruce Eckel 4th Edition. In the chapter Initialization & Cleanup, page : 189 the first bullet point in the second para mentions: Even though it doesn't ...
2
votes
2answers
84 views

How to ensure that a static constructors is called without calling any member

I have a class with a static constructor. I want the static constructor to be called without calling or using any of its members, but only if the constructor has not been called already. I tried ...
0
votes
1answer
48 views

C++ Static Class Member and Non-default Constructor

I have this class: class Object { public: private: float _positionX, _positionY, _positionZ; } I need to do check and do some math every time a new value is assigned to them, and I ...
1
vote
2answers
119 views

PHP 5.4 - Traits and self / static

I want to chain method calls on my classes as follows : new Obj($args, $if, $any)->foo()->bar(); Unfortunatly i have to enclose the construction within parenthesis : (new Obj($args, $if, ...
3
votes
7answers
473 views

Why do we need static constructors?

First of all, I got an answer in What is the use of static constructors?, but I want an answer in this context. Here is my C# static class: public static class BasicClass { static int i = 0; ...
-1
votes
1answer
64 views

C# - Can I initialize before the Main starts?

I had a job interview with the following question: Add/Change the following program such that the M method will be called before the Main. You may not change the Main. Main { c C = new C() } ...
0
votes
1answer
202 views

Initialize static const data members of a class into a class

Suppose we have this at a header file: class A { private: static const double x; public: A(double given_x); }; class B { private: static const double x; class A; public: ...
0
votes
2answers
109 views

c# JIT and static constructors again

Okay i have a little problem with those 2 things up there following situation: I got an abstract class "Emitter". this class has a static Dictionary to keep track of all types deriving from it. for ...
0
votes
2answers
616 views

Custom Composer Autoloader

Is there anyway to use a custom autoloader with Composer? I have some libraries with many hundreds of classes, they are laid out in the directory structure as per PSR-0. However they also include a ...
2
votes
0answers
188 views

Asmx WebService static constructor getting called more then once

Static constructor should be called once when the first method is called. My constructor called every time method is called. any idea Why is this happening? using System; using ...
1
vote
4answers
153 views

Static constructor in c++ and fatal error LNK1120: 1 unresolved externals

To start with i should probably let you know that i am by no means a programmer, and i'm just doing this for a homework assignment, so if it's possible i will require a really detailed explanation :) ...
0
votes
3answers
163 views

java static instance fields and constructor

In a Java class with static instance fields, is the constructor called every time the fields are accessed, or only on the first access? I initialize the static fields in the constructor, and was ...
0
votes
2answers
408 views

Setting a static final variable in constructor

what i basicly want is this: public class Test { private static final Integer a; public Test(Integer a) { this.a = a; } } This obviously doesn't work, cause the 2nd ...
2
votes
1answer
173 views

Constructor called twice on static std::map

I am certain I have done something wrong to make this happen. I am using a library that declares a map statically in a way that seems to make sense. In the header, in a class called Codec: ...
0
votes
3answers
172 views

static object and member method called before constructor

I have two classes A and B such that A has a static B instance as its member. B has a function Show() and here is my class A: class A { A() { _b.Show(); } private: static B _b; }; and ...
5
votes
1answer
94 views

Overriding a function without removing static properties

If I have a function like this: function a() { console.log('a'); } and then assign a static property like this: a.static = 'foo'; But say I want to override the function with another ...
2
votes
7answers
143 views

Is there an advantage to using a static method which returns a new instance via a private constructor?

A pattern I occasionally see is like this: public class JustAnotherClass { private JustAnotherClass() { // do something } static JustAnotherClass GetNewClass() { ...
3
votes
2answers
118 views

How to call the constructor when all the methods in a class are static?

http://stackoverflow.com/a/8839647/462608 Use the static initializer: public class MyClass { static { //init } } Can something similar be done in C++? Actually, I need to ...
0
votes
3answers
147 views

Why can't I call a static method in the constructor of a class?

obviously my Java Pause was too long... I have the following classes: public class TimeLine { public static final String TIME_LINE_DATE_FORMAT = "dd.MM.yyyy"; public TimeLine(Context ...
2
votes
5answers
97 views

when a structure has c-tor, why can't I statically initialize it?

My question: When a structure has c-tor, why can't I statically initialize it ? My compiler claims : type `myStruct' must be initialized by constructor, not by `{...}' Why is that ? I'm using gcc ...
2
votes
2answers
53 views

StackOverFlow Error in Instantiating an Object

I'm reviewing for a certification exam and I experimented with the following codes: class A { B b = new B(); static { System.out.println("A static."); } { ...
1
vote
5answers
137 views

Static Constructor Usefulness [duplicate]

Possible Duplicate: What is the use of static constructors? From MSDN: - "If a static constructor throws an exception, the runtime will not invoke it a second time, and the type will remain ...
0
votes
2answers
68 views

Declaring variables in the class that do not yet exist

How do I get the following code not to blow up in my face? <?php class abc{ } abc::$someDynamicVariable ?> I don't really want to declare the variable before hand, and was ...
0
votes
2answers
139 views

How to load this class (static/non-static method)?

At the beginning I had 3 PHP files to handle 3 different AJAX queries. I've decided to create a unique PHP class where I'm getting $_POST parameters and then call 1 of the 3 functions. I have ...
0
votes
1answer
80 views

Cleanly shutting down a DLL's Static events in a host I don't control

Does the following psuedo code accomplish my goal of cleaning up after myself when my DLL is being hosted by code I don't control? More specifically, how do I clean up my objects created in my ...
2
votes
2answers
242 views

Static member object of a class in the same class

Suppose we have a class as class Egg { static Egg e; int i; Egg(int ii):i(ii) {} Egg(const Egg &); //Prevents copy-constructor to be called public: static Egg* instance() {return &e} }; ...
0
votes
4answers
2k views

Static variable initialization in Constructor java

i want to understand from the below code y the value of static variable b was not initialized and though the value was initialized in the constructor. public class A { private static B b = ...
4
votes
3answers
1k views

Static method access to non-static constructor?

I had an exam yesterday on Java. There is something which seem realy ambigious to me. Rules are simple: Static method cannot cannot call non-static methods. Constructors are kind of a method with ...
1
vote
1answer
109 views

Using Base class Static const variable for constructing Base Class, Can I do it?

I have a base and derived class. The base class constructors have some static const variables. Is it okay to use it in derived class constructor to construct base class variable?? an example code ...
0
votes
7answers
103 views

Is it ok to assign this to a static pointer in constructor as in example here

I am using the approach below for convenience. ie a convenient means of accessing the same myapp instance in a larger program. The code compiles and runs correctly on my machine but want to ask if ...
2
votes
3answers
141 views

How to make a generic class a property in another instance class?

I'm totally new to C# generic so I have the following problem. I have 2 classes. One instance based and another generic class. I want to have a property in the 1st class of the type of 2nd generic ...
2
votes
3answers
151 views

PHP: Know if instantiation came from static method?

Say I have a class like this: class Person { private $value; public function __construct() { $this->value = 'new'; } public static function find( $ident ) { ...
3
votes
6answers
3k views

Pass argument to a static constructor in Java?

I'm trying to initialize a static class, with an argument, and then run some more static code in that class. I'm aware of the static block, but it seems it can't take any arguments. Is there a way to ...
-1
votes
3answers
342 views

static const in a struct, using constructor

I was looking for a method to initialize a static float inside a structure BUT using the constructor of the struct. In this site there are already solution to initialize the value but I was unable to ...
2
votes
2answers
3k views

Initialize static array in C++

I have these classes: class FS{ static char mount(Partition* p) {return myImpl->mount(p);} /*...*/ KernelFS* myImpl; }; class KernelFS{ char mount(Partition* p){ /*...*/ ...
0
votes
3answers
1k views

How do I make my C# random number generator change with each time the constructor is called?

I have two classes, a Teacher class and a Student class. In my program I create an array of 10 Teacher objects and within each Teacher object is an array of 10 Student Objects. Each Student object ...
0
votes
1answer
46 views

how can it be that my class field changes although its defined static?

Unfortunately I've got a bug that I have been working on for 1 full day now, and though I know there are ways to work around it, I am very excited to learn where my logic goes wrong. Now, my program ...
2
votes
5answers
251 views

Updating a static member in a function call causes crash

I have a class polymer with a static int count. When I create a new polymer to add to an array of pointers I am using the count to find the correct location in the array and then I update the count in ...
3
votes
3answers
1k views

c++ initializing static variable

There are two classes defined.. class Dictionary { public: Dictionary(); Dictionary(int i); // ... }; and class Equation { static Dictionary ...
1
vote
4answers
2k views

How can I create a static final java.net.URL?

My question is simple. I'm trying to make a set of java.net.URLs that are public static final, so that any class can access them from any context, as these URLs won't change during runtime. However, ...
9
votes
5answers
630 views

C# Many instances of a Singleton object

I'm having an issue with the Singleton pattern. It is really weird, but it looks like there are two or three instances of my Singleton Pattern. My website, is an actions site, with timers and I'm ...
2
votes
6answers
238 views

In C++, is it possible to access a static variable in the constructor?

I am trying: class MyClass { public: MyClass(); int myID; static int currentID; }; MyClass::MyClass() { myID = currentID; ++currentID; } I'm trying to assign a unique ID to ...
5
votes
3answers
1k views

Private Constructor in Python

I'm new to Python. How do I create a private constructor which should be called only by the static function of the class and not from else where?
0
votes
4answers
652 views

When and how are static data initialized in C++?

When are static data initialized ? I think: It can be initialized by constructor, or when it is declared, or outside of the class by class A::member_d = 5; // member_d is static others ...
0
votes
3answers
107 views

Static Method Call

I have one class which has one static method as shown below. class A { A() { Initialize(); } static void fm() { ; } void Initialize() { ; } } Now in the program ...
0
votes
5answers
141 views

how a vector of objects (with static members) is constructed

I wrote the following code to test a vector of objects, which have a static member. I expect the output would be: 1 2 3 4 5 6 7 8 9 10 But the actual output is: 1 2 3 4 5 6 6 6 6 6 It looks like ...
0
votes
4answers
638 views

static in the main class java and non static in constructor [closed]

I'm just trying to see if I can fully understand the concept of static and the reason of static in a main class. The keyword static refers to the main class. the reason why methods in a main class are ...
4
votes
3answers
7k views

Why can't a constructor be “static” when methods can be?

I started experimenting in java so I can get a more firm grasp on the concepts because they take some time to sink in. I never really understood why methods in a main class has to be static. i ...

1 2