0
votes
4answers
65 views

C++: save variable value for next call of the function

Is there a way to initialize a variable in a function and save its value for next call of function? I'm making application in qt and i have one function connected with a signal. I want an variable in ...
4
votes
1answer
68 views

Automatic variable has static lifespan if not initialized?

I have the concept of static local variables down pretty well: global lifespan, local scope. Similarly, I understand automatic variables are allocated/deallocated automatically when program flow ...
2
votes
1answer
49 views

Initializing part of function only once

I have a function with a small bit which I want to initialize once e.g. void SomeFunc() { static bool DoInit = true; if (DoInit) { CallSomeInitCode(); DoInit = false; } // The rest of the ...
0
votes
3answers
38 views

Why doesn't java.lang.ExceptionInInitializerError have a constructor with both message and cause?

I use java.lang.ExceptionInInitializerError to rethrow caught exceptions in static initialisation blocks. I noticed it is not possible to construct with both a message and a cause; only one or the ...
1
vote
2answers
47 views

how to load a java class along with static initializations before they are used?

I need to load some classes along with their respective static initializations, for example, in a factory method implementation. If I just make reference to the class using the below syntax, the JVM ...
0
votes
2answers
53 views

Only super class is initialized even though static field is referenced using sub type

I am doing some research on JAVA initialization process. Here is a good material for reference: When a class is loaded and initialized in JVM On this page there is rule says: 3) If Class ...
0
votes
1answer
33 views

In AS3, how do I run code when a when the movie starts?

I'm making a level editor for my game, and would like to be able to access a list of all the classes included in my game. I have a static function in my Main class: public static function ...
0
votes
2answers
178 views

Java - Static and Dynamic Array Initialization

Is it true that every array that is initialized during runtime is dynamic and every array that is initialized during compiling is static? for example: int array[]; public main() { ...
1
vote
1answer
48 views

c++ example of non-local static objects interacting in different translation units

I am reading Scott Meyer's Effective C++ book. In it, he mentions that the relative order of non-local static objects in different translation units is undefined. To demonstrate, he gave the following ...
2
votes
2answers
74 views

Will there any issues in initializing non-static member variables this way?

I have initialized the variables as follows in the code below. Is it okay to initialize like this ? public class StaticInit { int x = getInt(); String z = "Lucky Number " + processInt(x); ...
4
votes
5answers
94 views

Why static initializer block not run in this simple case?

class Z { static final int x=10; static { System.out.println("SIB"); } } public class Y { public static void main(String[] args) { System.out.println(Z.x); ...
1
vote
8answers
130 views

Difference between the static initializer block and regular static initialization

As the title says, what exactly is the difference between public static String myString = "Hello World!"; and public static String myString; static { myString = "Hello World"; } is there ...
2
votes
2answers
98 views

How to initialize a static field of which type is a private nested class?

Outer.hpp: class Outer { class Inner { Inner() {} }; static Inner inner; } Outer.cpp (at top-level, e.g. not within a function body): Outer::Inner Outer::inner; I get the following ...
1
vote
2answers
45 views

static class initializers - are there situations where one would need to synchronize?

I have a situation where I want to initialize some static, "constant" (ie. not modified after initialization) data structure. I'm doing this in the "static {}" code block. Is it guaranteed that this ...
1
vote
2answers
92 views

JAVA, public static variables initialization

/* ---------------------- classes --------------- */ public class A { public static String str = "compile"; public A() { } } public class B { public static String str = A.str; public ...
0
votes
1answer
60 views

Why Volatile Static Member Initialization Generate Redefinition Compilation Error?

My Problem is the following: I have a class with static counter. I set this counter as volatile because I use this variable in multithreaded environment. class.h class myClass { public: volatile ...
0
votes
1answer
76 views

ExceptionInInitializerError that I can't understand

This compiles fine: static final Screen screen = Screen.getInstance(); static final InputListener listener = InputListener.getInstance(); static { screen.addListener(listener); ...
5
votes
2answers
289 views

Static class initialization not performed when running JUnit test

I have a java class with some static fields: private static final PDMapCacheDAO REST_CACHE_DAO = new PDMapCacheDAOImpl( Constants.REST_CACHE_NAME ); private static final PDMapCacheDAO ...
3
votes
3answers
302 views

C++ initialize const static vector dynamically

I would like to initalize a static const std::vector in class Foo to {0, 1, 2, 3, ..., n} where n is known at compile time based on the value of Last in the enum below. The goal is for Foo::all to ...
9
votes
9answers
300 views

Necessity of static block in Java

I found that in Java, there is a feature called static block, which includes code that is executed when a class is first loaded (I don't understand what 'loaded' means, does it mean initialized?). Is ...
2
votes
2answers
109 views

Initialize static std::multimap inside method where it is declared

I need to have static multimap, but I don't want do it as class field, 'cos I need it only in one method. I write it so, but isn't it any other way to initialize this map inside function that ...
0
votes
3answers
109 views

PHP config file using a nested static array [closed]

I'm struggling with a "noob question" in PHP : I would have a conf.php file containing something like that : <?php static $oauthConfig = array( 'facebook'=> array( 'appId' ...
1
vote
2answers
235 views

static const int in class definition & initialization

If(and only if) you use an initialized member in a way taht requires it to be stored as an object in memory, the member must be (uniquely) defined somewhere. from "The C++ Programming ...
1
vote
4answers
159 views

C++: How to initialize static member variables which are not integral types?

How can I initialize a static object in c++? I'm looking for something like static block in java. I tried this: Foo.hpp class Foo{ public: static Bar b; static String s; static Bar ...
1
vote
2answers
230 views

C++: How to declare an empty private static vector inside a class? [duplicate]

Possible Duplicate: Initializing private static members This is really driving me crazy, I want to declare a static private vector inside a class I am going to use as a shared memory. My ...
6
votes
4answers
213 views

The initialization of static variable in C

I have a question question about initialization of static variable in C, I know if we declare a global static variable, but default, the value is 0, for example: static int a; //althrough we do not ...
0
votes
1answer
106 views

ideal data type for an array in C, level 2

Now that I found a way to statically initialize my array of items, I need a more complexe structure and instead of a char* as a value, I need a struct (named atom_s). typdef struct atom_s { const ...
0
votes
3answers
111 views

Declaration and Definition of variables in c

I understand the terms declaration and definition as below. Declaration: This is just a heads up to the compiler that a variable of specified "name" and "type" exists in the code. So that it can be ...
7
votes
3answers
89 views

C mutually referencing static initializers

Is it possible in C to have mutually referencing static variable initializers, as shown in the example below? The example compiles, without warning in gcc -Wall, if line 2 is added to pre-declare ...
7
votes
1answer
631 views

Static Initialization on OpenCV Android

i'm trying to run OpenCV Tutorial 1 - Add OpenCV with static initialization using dev_with_OCV_on_Android.html#application-development-with-static-initialization i don't want a separate OpenCV Manager ...
2
votes
3answers
307 views

How to catch exception thrown in static initializer block

I wrote the following code: static { /* Attempts to load JDBC driver */ try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { ...
3
votes
6answers
173 views

static initialization of multiple static variables in one function

hi I have static std::map with some values and static iterator to default element like this and initialize both at once: in .h file class foo { static std::map<std::string, int> ...
2
votes
5answers
96 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
92 views

How should I invoke class static initialization?

I have many GUI element types and use them directly in code after GUI loading. That would be OK unless GUI loader needs to know about existing elements to create them. public final class VerticalBox ...
0
votes
1answer
141 views

java jersey static fields initialization

I am creating a REST service with Jersey. Some resources (like some global Maps, files) should be loaded before the first request arrives (because loading this resources need 20 secs). So I create ...
1
vote
1answer
754 views

How to initialize static const vector

I have a member in my class defined like this inside my header file: static const vector<note_name> noteMap; In my source file I want to assign values to the vector so I tried: const ...
0
votes
1answer
2k views

C++ Initializing static const structure variable

I'm trying to add a static constant variable to my class, which is an instance of a structure. Since it's static, I must initialize it in class declaration. Trying this code class Game { public: ...
0
votes
3answers
99 views

Persistent class variables

I have a question regarding static variables, or some other way to do so. I have a master class, PatternMatcher. I have several derived units from that, depending on what matcher is used. Now each ...
3
votes
1answer
101 views

Static initialisation C++

My limited understanding of C++ means that I have no idea how to correctly do the following: #include "Platform.h" #include "Global.h" SDL_Surface *ms_pSmall ...
15
votes
3answers
443 views

Java - weird static String behavior - new String(“xxx”) vs “xxx”

public class Test { private static final String str1 = new String("en"); private static Test instance = initInstance(); private static final String str2 = new String("en"); private ...
1
vote
1answer
360 views

Objective-C static const variables

I am trying to create a class with static const variables that can be used from outside the class, but I cannot figure out how to initialize this variable. Example Code: @interface ExampleClass { ...
3
votes
3answers
76 views

Private static declaration and subsequent initialization

A .cpp file has a bunch of class definitions . One class has a private static member as follows: class SomeClass:public SomeParentClass { private: static int count; }; and right after the ...
2
votes
4answers
182 views

What run-time costs are there to initializing a static with a variable value?

In C++, what is the expected runtime cost in a reasonable compiler of initializing a static variable with a variable value as opposed to a constant value? For example consider this code: bool foo(); ...
0
votes
2answers
235 views

Initialize sparse static array

I need to initialize a static array. Not all of the values are sequential. Something like this works fine for a sequential array: class Foo { public: static const char * name[]; } const char ...
1
vote
3answers
336 views

Compile time default values for static members of static struct defined inside classes

I would like to have a design suggestion from you. I have a set of classes in C++, every class has a bunch of variables (double and int) which determines the behavior of the algorithms they ...
5
votes
5answers
181 views

How to return from a static initialization block in java

I want to return from the static block. looks like the return and break statement dont work. Is there any alternative. I know the bad workaround could be create a flac and check the flag to continue ...
2
votes
1answer
417 views

Static objects initialized within class methods in ARC

I use class initializer to initialize some static variables that I use later in the code. __strong static NSCharacterSet* _unwantedChars; @implementation TMGeocoderModel +(void)initialize{ ...
2
votes
2answers
411 views

namespace and private static class members

Why does this work: #include "iostream" class Something { private: static int s_nIDGenerator; int m_nID; friend int main(); public: Something() { m_nID = s_nIDGenerator++; } ...
3
votes
3answers
3k views

Initializing a static pointer in C++

I have a class with a static member that's a pointer like so : animation.h class Animation { public: Animation(); static QString *m; }; animation.cpp #include "animation.h" QString* ...
1
vote
2answers
153 views

weird behavior when initializing static member of a static class

I have problem with the initialization of the static member of a static class. As far as I know, it will be initialized one time only, so I lock this variable when I do fooList.Add(...) in ...

1 2 3