Tagged Questions
0
votes
1answer
42 views
How to initialize static field in template class with type of inner class
I have something like this
template <class T>
class Outer {
public: class Inner;
static Inner* x;
//...
class Inner {
//...
};
};
// Not working
template ...
1
vote
0answers
57 views
Why is the compiler not generating code for my uninstantiated template class's static member variable? [duplicate]
This question is hard to word, primarily because of the terms class instantiation vs. template instantiation. I have a template class that is full of static functions and members. Each specialization ...
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
285 views
Initialization order of static data inside class template
// File: InitFirst.h
#pragma once
template <int val>
struct InitFirst
{
static float s_dividedByThree;
};
template <int val>
float InitFirst<val>::s_dividedByThree = val / ...
0
votes
2answers
91 views
How to mitigate user-facing API Effect of shared members in templated classes?
Let's say I have a type of lookup table which I can build for a given integer:
class FooLookupTable {
...
public:
FooLookupTable(int radix) {
...
}
};
Then there's a class ...
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;
};
...
3
votes
3answers
818 views
std::set used as a static templated member variable
I am trying to make something like a Java style Enum, which I'm calling a flag. The requirements are that each flag is static so flags are directly referencable, each flag storing the string of it's ...