The non-member-functions tag has no wiki summary.
6
votes
1answer
283 views
Are begin(container) and end(container) standardized?
Are the non-member function templates begin(container) and end(container) part of C++0x? If so, in which header file do they live?
6
votes
2answers
3k views
Operator overloading : member function vs. non-member function?
I read that an overloaded operator declared as member function is asymmetric because it can have only one parameter and the other parameter passed automatically is the 'this' pointer. So no standard ...
5
votes
3answers
140 views
Static, nonmember or static nonmember function?
Every time I have some functionality which is in the direction of "utility", I end up wondering which option is the best. For instance, printing message structs (own or external), some ...
5
votes
3answers
281 views
Friend functions of a class template
I have a class template Foo<T>.
I'd like to implement a non-member function Bar that takes two Foos and returns a Foo. I want Bar to be a non-member because it will be more natural for callers ...
2
votes
3answers
102 views
Non member function can be declared multiple times while member function can only be declared once?
Non mumber function can be delcared multiple times while member function can only be declared once? Is this right ? My example seems saying yes.
But Why ?
class Base{
public:
int foo(int i);
...
1
vote
1answer
97 views
Invalid use of 'this' in non-member function
I had working on a class and started writing everything in the same .cpp file. However, after a while I could see the class getting bigger and bigger so I decided to split it into a .h and a .cpp ...
1
vote
3answers
88 views
friend function, cpp
We had an assignment in school implementing a Matrix class that overloads all arithmetic operators. What I did was to (for example) define += as a member function, and then define + as a non-member ...
1
vote
1answer
135 views
Accessing a C++ non-member function from C# via reflection
I need to gain some run-time information about a C++ program, which is kinda difficult due to C++ not offering some sophisticated reflection mechanism. Now, my approach is to compile the C++ code ...
1
vote
1answer
78 views
Overloading operators with non-member functions
The answer to this question seems to escape me, but how do you go about overloading with non-member functions. Do you just create a program level function and where ever the prototype (or definition) ...
0
votes
1answer
83 views
How to call a non-member function that takes in an object within a method
Say I have a class Student, and I have already declared a non-member function called "function_A" that takes in as an argument, type Student.
Now say INSIDE the Student class, I had a member ...