What is the difference between member and nonnember functions in c++.
|
|
A (non-static) member function has an implicit Syntactically, you pass that implicit argument on the left of the Likewise, when declaring a member function, you need to do so in the class of which it is a member:
Non-member functions are instead declared outside any class (C++ calls this "at namespace scope"). (Non-static) member functions can also be virtual, but non-member functions (and static member functions) cannot. |
|||||
|
|
A member function is invoked on an object and has access to the fields of the class. Member functions can be polymorphic (via the |
|||
|
|
|
A non- A non-member function has no implicit
Semantically a member function is more than just a function with an implicit this parameter. It is meant to define the behaviour of an object (i.e. a car object would have Note that there are also |
|||||||||||||
|
|
There are several differences between a member function (which I will now call method) and a free function (which I will now call function). First, let's just state that they are not so different. Object code can generally be compiled down to C (or assembly) which are procedural languages with no notion of methods. Both methods and functions are then called like subroutines. Now that this is out of the way, let's look at the differences. They can be classified in two categories: conceptual and syntactic. Syntactically The syntax is the obvious part of any language, so it's the easiest to get out of the way. First note: there are two different kinds of methods in C++ (and a number of other languages), the Both kinds of methods have full access to the class internals (
Within a regular method, a special keyword ( A regular method may be A regular method may be marked as One often ignored point, is that methods (both Since the qualification using Now that the main syntactic differences have been asserted, let's check the conceptual differences. Conceptually OOP is generally about tying together state and behavior (of this state). This is done by creating classes which group attributes (state) and behavior (methods) and (in theory) stating that only the methods can act on the state. Therefore, in OOP, the methods are responsible for implementing the behavior of the class. The methods participate to the encapsulation of state (freeing clients from the implementation detail) and to the preservation of the class invariants (statements about the class state that hold true from its birth to its death, whatever you do with it). C++ In C++, as we have seen previously, this is done by using different access levels ( Note: I urge you not to use However, beware that C++ discourages from bloating the interface with lots of methods. The trouble is that because methods are responsible of maintaining invariants, the more there are and the more the responsability is spread, making it more difficult to track down bugs and ensure correctness. Also, since methods depends on the class internals, it makes change more costly. Instead, in C++, it is generally advised to write a minimal set of methods and delegating the rest of the behavior to non-
This answer is becoming rather long-winded, yet I suspect that I have overlooked differences that other would find critical... oh well. |
|||
|
|
|
Member functions get called on instances and have a |
|||||||
|
|
In the following code,
Its very simple. Since |
|||
|
|