0
votes
2answers
445 views

Linker gives error “undefined symbol” for integral static const members used in certain contexts [duplicate]

Possible Duplicate: C++ - defining static const integer members in class definition Note: There are several extant questions re similar issues, but I have reviewed many of them and cannot ...
10
votes
1answer
225 views

c++ static template members initialization issue

gcc 4.5.1, SuSE Linux i686 Suppose we have following code: template<typename realT> class B { public: B() {std::cout << "B()" << std::endl;} }; template<typename realT> ...
0
votes
3answers
173 views

Class declaration in a header file and static variables

Noob question, but would like to understand the following: Imagine I have a multifile project. I'm specifying a class in a header file to be shared among all the files in the project, and I write ...
2
votes
1answer
150 views

How to guarantee initialization ordering of const static members in templated structures

I have two templated structures that each contain a const static member variable. The initialization of one of these member variables depends on the second. I would therefore like to be able to ...
1
vote
3answers
330 views

Static variable not initialized when class is loaded

I have an interesting question on initialization. I have the following code: public class ErrorLookupProvider { private static final ErrorLookupProvider INSTANCE = new ErrorLookupProvider(); ...
2
votes
2answers
194 views

Why we have to define a const static member that is initialized within a class

As we know,It is possible to initialize integral const static members inside the class structure.This is useful when the constant is used in the class structure after the initialization.For example,it ...
1
vote
4answers
423 views

trying to force static object initialization

I am trying to initialize a static object without success. The purpose is to automatically register a factory class in a repository (which is a singleton). I've already had a look at: How to force a ...
2
votes
1answer
321 views

Initialize non-const static member variables in C++, through a static member function

I am trying the following and getting an emulator crash between the two log statements. Is there something wrong? protected: static int maxSize; public: static void setFontSizeRange(int max) ...
5
votes
5answers
2k views

Initialize a static const non-integral data member of a class

Consider the sample program below: #include <iostream> using namespace std; class test { public: static const float data; }; float const test::data = 10; // Line1 int main() { ...
1
vote
1answer
138 views

Static map initializer function error

I get the following base error: 1>c:\program files\microsoft visual studio 10.0\vc\include\utility(163): error C2436: 'second' : member function or nested class in constructor initializer list ...
2
votes
4answers
225 views

Forcing static member initialisation

I have a class which contains a static member, a map of strings to function pointers. This map is intended to be populated once with a static set of mappings, and will not subsequently be modified. ...
1
vote
2answers
115 views

Delaying static class member initialization

I have this (example) code: init() class A: foo = bar() def __init__(self): print(A.foo) The problem is, the function bar() refuses to work unless init() has been called first. ...
5
votes
1answer
426 views

C++ static variable inialization and threads

I have the following bit of C++11 code that uses threads and static variable initialisations. My question is: What guarantees or assurances does the C++ language make about the single initialisation ...
2
votes
3answers
331 views

Initializing static fields in C# for use in enum pattern

My question is actually about a way to work around how C# initializes static fields. I need to do this, in my attempt to duplicate a Java style enum. The following is an example of the code that ...
2
votes
1answer
81 views

Is it well defined to declare an object of the class before its static variable in global space?

Following is a simple case of counting objects: struct A { static int count; A () { ++ count; } }; Now, its object and static member are declared as: A obj; // comes 1st int A::count = 5; // ...
0
votes
3answers
688 views

Initialize static member with custom class in php

as there are no enums in PHP I tried to do something like this: class CacheMode{ public static $NO_CACHE = new CacheMode(1, "No cache"); private $id, $title; public function ...
11
votes
5answers
2k views

Weird undefined symbols of static constants inside a struct/class

Either I'm very tired or something weird is happening that I'm not aware of, because the code below is resulting in undefined symbols for Foo::A and Foo::B when linking. This is minimized as much as I ...
5
votes
2answers
1k views

Initializing static members of a templated class

I'm trying to figure out why this example doesn't compile. My understanding is that if a static variable is not explicitly set then it defaults to 0. In the five examples below four of them behave as ...
2
votes
2answers
312 views

best alternative to in-definition initialization of static class members? (for SVN keywords)

I'm storing expanded SVN keyword literals for .cpp files in 'static char const *const' class members and want to store the .h descriptions as similarly as possible. In short, I need to guarantee ...
21
votes
3answers
10k views

C++ Static member initalization (template fun inside)

For static member initialization I use a nested helper struct, which works fine for non templated classes. However, if the enclosing class is parameterized by a template, the nested initialization ...
3
votes
6answers
2k views

Why might a static data member not get initialized?

I'm trying to register a bunch of classes with a factory at load time. My strategy is to harness static initialization to make sure that before main() begins, the factory is ready to go. This ...
108
votes
7answers
80k views

Initializing private static members

This feels like a dumb question, but what is the best way to initialize a private, static data member in C++? I tried this but it gives me weird linker errors: class foo { private: ...