3
votes
2answers
65 views

Is a static member of a template globally unique?

Looking at the answers available right now, I'm still not sure what the answer is. Here's my example // foo.h template <class T> class foo { public: static T t; }; template <class T> ...
1
vote
1answer
69 views

Initializing a static templated member of a template class

I have the following code snippet, but it does not work. the dataMap member is supposed to contain a callback function that takes a T& and the T to pass to the callback at the appropriate time. ...
1
vote
1answer
232 views

Proper initialization of static constexpr array in class template?

Static class members in C++ have caused a little confusion for me due to the standard's verbiage: 9.4.2 Static data members [class.static.data] The declaration of a static data member in its ...
2
votes
2answers
38 views

Is there a way to have array behavior as static struct data member?

I have a mechanism like the following for retrieving certain parameters for a limited number of different types of objects I need to handle: template <class T> struct params {}; template ...
4
votes
4answers
201 views

Lazy initialization of a static member array of a template class

I am writing code to perform Gaussian integration with n points, where n is a compile time constant. For a given n, I know how to compute abscissas and weights. The computation has to be done from ...
1
vote
1answer
62 views

noncopyable static const member class in template class

I have a non-copyable (inherited from boost::noncopyable) class that I use as a custom namespace. Also, I have another class, that uses previous one, as shown here: #include <boost/utility.hpp> ...
3
votes
1answer
217 views

C++ templates and static members - definition in the header

Consider the following construct: //! Templated singleton. /*! Template wrapper enforcing the singleton behavior. */ template <class T> class TSingleton { private: //! Singleton ...
0
votes
2answers
26 views

Static member of non-template class with template method

I have the following class structure: class A { template<typename T> static void f(const T& input) { //do something with X and input } static ostringstream x; } Then in main I ...
1
vote
6answers
148 views

C++ Templates with unique static members

a template class has all static members replicated for each instanciation of it. If I want a static member that exists only once for all instanciations, what should I do? Use a normal static field ...
0
votes
4answers
103 views

Type Checking: see if a variable is inherited or is a certain class

I read that dynamic_cast<THECLASS>(THEVARIABLE) would return 0 if you tried to cast THEVARIABLE to THECLASS (assuming that THEVARIABLE is not a class of THECLASS and not a decedent of THECLASS). ...
2
votes
1answer
149 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 ...
2
votes
1answer
354 views

How to initialize static member array in class with template [duplicate]

Possible Duplicate: Where and why do I have to put the “template” and “typename” keywords? #include <iostream> using namespace std; template <class T> ...
1
vote
4answers
415 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 ...
3
votes
2answers
572 views

Static field initialization in template class in C++

I'm trying to create some self-registering classes in C++. So I tried the solution similar to the one provided here. While doing this I stumble over something strange. Here's the code: #include ...
0
votes
1answer
232 views

Partial template specialization for initialization of static data members of template classes

How would one initialize static data members of a template class differently for particular parameters? I understand that templates are different than other kinds of classes and only what is used in ...
0
votes
1answer
56 views

How to initalize static class member used in template method?

I want a static constant, LIST_DELIMITER, defined in my class below. However, I can't figure out how to declare it with templates. // MyClass.h #pragma once #include ...
7
votes
3answers
149 views

Automatic destruction of static object

Why doesn't C++ create/destroy a static member of a template type. Observe the following example: #include <iostream> struct Dump { Dump() { std::cout << "CTOR" << ...
7
votes
3answers
317 views

When do constructors of static members of template classes get called in C++?

There is plenty of information on when constructors of static members of ordinary classes are called. However, I am seeing some strange behavior with regard to template classes. What should the ...
2
votes
3answers
263 views

static member definition with template base class

There is a base class: template<class T_CLASS> class TBase { protected: static CSomeClass m_objSomeClass; public: inline void Set(CSomeClass f_objSomeClass) { m_objSomeClass = ...
7
votes
4answers
379 views

What is the initialization order for static data members of template class in a file?

In a given file if I have, struct A { static int a; }; struct B { static int b; }; int A::a; int B::b; Then, I can always expect that A::a gets initialized before B::b. Now for the same file, take ...
11
votes
4answers
889 views

How to force a static member to be initialized?

Consider this example code: template<class D> char register_(){ return D::get_dummy(); // static function } template<class D> struct Foo{ static char const dummy; }; ...
1
vote
4answers
294 views

CRTP sub-subclass and instances list

I'm trying to implement a kind of CRTP (if I well understand what it is) with multiple inheritance. My main goal is to have a unified way to access list of instances of each subclass. May problem ...
5
votes
1answer
5k views

Can template classes have static methods in C++

Can a template class in C++ have static members? Since it doesn't exist and is imcomplete before it is used, is this possible?
0
votes
1answer
486 views

swig undefined symbol on templates with static members in python

The need is to export to python with swig a portion of a templated class with some static members. All compiles well and the module is correctly created with the name _pipeit.so; the problem comes ...
1
vote
2answers
744 views

Static template data members storage

First I'll write example to properly address the question. First of all, I'll declare template to be used to create singleton object (not auto-created): singleton_base.h template <class ...
3
votes
3answers
647 views

template partial specialization of static fields initialisation

I'm attempting something like the following: struct MyType { }; template <typename T> struct Test { static const MyType * const sm_object; }; template <> struct Test<void> { ...
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
5answers
569 views

Initializing static pointer in templated class

Consider a class like so: template < class T > class MyClass { private: static T staticObject; static T * staticPointerObject; }; ... template < class T > T ...
0
votes
2answers
234 views

Sharing static members between template instantiations? (impossible?)

I am doing something that is probably silly, but it would be nice if it worked. I am attempting to specialize types in a way that I need my own lookup structure that is essentially global (but ...
0
votes
2answers
177 views

Inheritance and storing static class information

I'm trying to set up some stuff with Lua, but the specifics of Lua aren't important for my question. What I would like to be able to do is call a function, say OpenLib<T>(L), and have it get ...
0
votes
1answer
332 views

overloading new/delete problem

This is my scenario, Im trying to overload new and delete globally. I have written my allocator class in a file called allocator.h. And what I am trying to achieve is that if a file is including this ...
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 ...
6
votes
6answers
19k views

How do you create a static template member function that performs actions on a template class?

I'm trying to create a generic function that removes duplicates from an std::vector. Since I don't want to create a function for each vector type, I want to make this a template function that can ...