Tagged Questions
12
votes
4answers
10k views
Unresolved external symbol on static class members
Very simply put:
I have a class that consists mostly out of static public members, so I can group similar functions together that still have to be called from other classes/functions.
Anyway, I have ...
2
votes
5answers
236 views
C++ static members in class
Is it possible to access to access and use static members within a class without first creating a instance of that class? Ie treat the the class as some sort of dumping ground for globals
James
1
vote
2answers
121 views
java static member memory leak
I am reviewing one java code base for finding some memory leaks. During the review I have find the following scenarios.
A class Class1 has in the codebase. Class1 have some instance variables and ...
1
vote
2answers
197 views
Template object as static member of the template class
Imagine the following template class (setter and getter for the member _t omitted):
template<class T>
class chain
{
public:
static chain<T> NONE;
chain()
: _next(&NONE)
{}
...
1
vote
5answers
589 views
Should lookup tables be static
I have a Message class which parses text messages using lookup tables. I receive a lot of messages and create and destroy a lot of objects so I thought I declare those lookup tables as static members ...
0
votes
3answers
157 views
C++ static members
I have the following code:
void Foo() {
static std::vector<int>(3);
// Vector object is constructed every function call
// The destructor of the static vector is invoked at
// ...
0
votes
2answers
42 views
Classes and file reading
Can an object of ifstream type used for file reading be a static member of a class? I want to read a file and store each line in an array of objects of a class i have created. I want the file reading ...