Where would you use a friend function vs a static function?
feedback
|
|
Static functions are used when you want a function that is the same for every instance of a class. Such functions do not have access to "this" pointer and thus cannot access any non static fields. They are used often when you want a function that can be used without instantiating the class. Friend functions are functions which are not in the class and you want to give them access to private members of your class. And this(static vs. friend) is not a matter of using one vs the other since they are not opposites. | |||||||
feedback
|
|
Friend functions (and classes) can access the private and protected members of your class. There's rarely a good case for using a friend function or class. Avoid them in general. Static functions may only access static data (that is, class-scoped data). They may be called without creating an instance of your class. Static functions are great for circumstances you want all of the instances of your class to behave the same way. You can use them: | |||
feedback
|
|
11.5 "c++ prgoramming language" by stroustrop ordinary member functions get 3 things
friends get only #1 static functions get 1 and 2 | |||
|
feedback
|
|
The standard requires that operator = () [] and -> must be members, and class-specific | |||
|
feedback
|
|
A static function is a function that does not have access to A friend function is a function that can access private members of the class. | |||||||
feedback
|
|
You would use a static function if the function has no need to read or modify the state of a specific instance of the class (meaning you don't need to modify the object in memory), or if you need to use a function pointer to a member function of a class. In this second instance, if you need to modify the state of the resident object, you would need to pass thisin and use the local copy. In the first instance, such a situation may happen where the logic to perform a certain task is not reliant on an object's state, yet your logical grouping and encapsulation would have it be a member of a specific class. You use a friend function or class when you have created code that is not a member of your class and should not be a member of your class, yet has a legitimate purpose for circumventing the private/protected encapsulation mechanisms. One purpose of this may be that you have two classes that have need of some common data yet to code the logic twice would be bad. Really, I have only used this functionality in maybe 1% of the classes I've ever coded. It is rarely needed. | |||
|
feedback
|
|
Here is what I think it is: Friend function- when you need access to a different class member, but the classes are not related. Static function- when you no not need access to the 'this' pointer. But, I have a feeling there is more to it.... | |||
|
feedback
|
|
Static function can be used in many different ways. For example as simple factory function:
This is very simplified example but I hope it explains what I meant. Or as thread function working with Your class:
Friend is completely different story and they usage is exactly as described by thebretness | |||
|
feedback
|