Tagged Questions

1
vote
1answer
120 views

C++: Pointer to class member function inside a non-related structure

I've done a bit of reading online as to how to go about this and I think I'm doing it correctly... My goal is to have an array of structure objects that contain pointers to member-functions of a …
0
votes
3answers
154 views

Are preconditions and postconditions needed in addition to invariants in member functions if doing design by contract?

I understand that in the DbC method, preconditions and postconditions are attached to a function. What I'm wondering is if that applies to member functions as well. For instance, assuming I use …
1
vote
3answers
164 views

Determine whether a class has a function

Using a trick (described by Olivier Langlois), I can determine whether a class has a type defined: template<typename T> struct hasType { template<typename C> static char test( …
6
votes
2answers
165 views

Why are some operators in C++ only allowed to be overloaded as member functions?

The operators are = () [] -> ->* conversion operators These can be declared only as member functions. Any other operator function can be either a class member or a non-member function. What is the …
0
votes
2answers
135 views

Iterate over all members of a object within a function of that object

It would be exceedingly handy if I could do this: var MyObject = function(param1, param2, ... paramN) { this.var1 = stuff; this.var2 = moreStuff; . . . this.varN = nStuff; …
1
vote
5answers
346 views

Is it good form to compare against changing values in a loop in C++?

No doubt some of you have seen my recent posting, all regarding the same program. I keep running into problems with it. To reiterate: still learning, not very advanced, don't understand pointers very …
0
votes
1answer
98 views

mem_fun fails, pthread and class ptr

pthread takes in as its parameter void (start_routine)(void* userPtr), i was hoping i can use std::mem_fun to solve my problem but i cant. I would like to use the function void * threadFunc() and …
3
votes
8answers
253 views

What is better practice when programming a member function?

I have seen member functions programed both inside of the class they belong to and outside of the class with a function prototype inside of the class. I have only ever programmed using the first …