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 ...
1
vote
2answers
130 views
Is there any difference regarding performance of private, protected, public and internal methods in C# classes?
Is there any difference regarding performance of private, protected, public and internal methods in C# class? I'm interested if one consumes more processor time or RAM.
1
vote
2answers
221 views
How to dynamically add members to class
My question can be simply illustrated by this code:
def proceed(self, *args):
myname = ???
func = getattr(otherobj, myname)
result = func(*args)
# result = ... process result ..
return ...
1
vote
7answers
135 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
107 views
Access identically named class members of instances of different classes
I have instances of class A and B, and both classes implement a member 'Text'. Is there a way to access member Text in a generic way?
I'm hoping for something analogous to the javascript way of simply ...
0
votes
2answers
167 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
5answers
290 views
C# accessing form member from separate class
I need some advice please on the best way to achieve a particular outcome...
My scenario...
I have a Form1 class, which is my main Form with a picture box on it.
I have a second class called camera ...
0
votes
4answers
361 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 ...
0
votes
3answers
246 views
labeling a group of members as private/public in c#
in a c++ class declaration, you can label a group of members as private or public, e.g.
private:
int x;
double y;
seems like there's no way to do this in c#. am I wrong?