The non-member-functions tag has no wiki summary.
0
votes
2answers
55 views
Choosing to make a function a member, non-member, private, public, etc
I've searched around for descriptions of the difference between member and non-member functions and, while I'm still quite confused, I thought I'd give an example to clear things up for me a bit. ...
7
votes
2answers
180 views
Multiplying an object with a constant from left side
I have a Matrix class and it has overloaded * operators for scalar and matrix multiplications.
template <class T> class Matrix
{
public:
// ...
Matrix operator*(T scalar) ...
7
votes
4answers
761 views
Non-member vs member functions in Python
I'm relatively new to Python and struggling to reconcile features of the language with habits I've picked up from my background in C++ and Java.
The latest issue I'm having has to do with ...
2
votes
1answer
3k 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 ...
2
votes
3answers
470 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
3answers
241 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
213 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 ...
5
votes
3answers
565 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 ...
6
votes
1answer
706 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?
0
votes
1answer
210 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 ...
1
vote
1answer
158 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) ...
6
votes
3answers
928 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 ...
12
votes
2answers
12k 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 ...