Tagged Questions

12
votes
4answers
11k 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 ...
6
votes
3answers
248 views

Non static const data members

How do I define a non-static const data member of a class in C++? If I try compiling the following code: class a { public: void print() { cout<<y<<endl; } private: ...
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
7answers
132 views

C++ class members

I came from Java to C++ ... When I try to do this ... class Box { Table* onTable; }; class Table { Box* boxOnIt; }; int main() { Table table; Box box; table.boxOnIt = ...
1
vote
4answers
108 views

Disallow fields in descended class C++

With a friend, we had following problem recently. There was a base class: class A { public: A() : foo(10) {} virtual int getFoo() const { return foo; } protected: int foo; }; A friend ...
1
vote
2answers
199 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
3answers
187 views

Identical Class Member Names and Function Argument Names in C++

I have a simple object that holds some [public] data. I want to keep my interface clean, so I don't want to pre-/post- fix anything to the names of the publically accessible variables nor to the ...
1
vote
5answers
590 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 ...
1
vote
9answers
401 views

Is it better to store class constants in data members or in methods?

I recently wrote a class that renders B-spline curves. These curves are defined by a number of control points. Originally, I had intended to use eight control points, so I added a constant to the ...
0
votes
3answers
38 views

Trying to pass a pointer as a parameter to a member of fstream that points to a file

/* Thanks to anyone looking at this who might attempt to answer it. I'm really not trying to waste anyone's time here, but I have beat my head on this for about three days. I realize it is probably ...
0
votes
2answers
76 views

Accessing public members of base class fails

might be a bit of a coward-ish question: I've got two classes, and declared all variables public. Why can't I access the variables from derived class?? g++ tells me: vec3d.h:76:3: error: ‘val’ was ...
0
votes
1answer
76 views

Calling member function of an object inside a vector

This is a continuation on my previous question here regarding retrieving and editing private members of objects in a vector. I have a vector full of objects that have private members that I need to ...
0
votes
2answers
159 views

C++, unmanaged, class, members: How (if at all) can I list all the members in a class? [closed]

Possible Duplicate: Iterate through struct variables. So I have a header file and a code file. The class is representation of a View that will be queried from stored proc. For each col. in ...
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
4answers
354 views

Map functions of a class while declaring the functions

My previous question about this subject was answered and I got some tests working nice. http://stackoverflow.com/questions/1786809/c-map-functions-of-a-class My question is now, if there is a way to ...
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 ...