vote up 16 vote down star
1

The C++ friend keyword allows a class A to designate class B as it's friend. This allows Class B to access the private/protected members of class A.

I've never seen or read anything as to why this was left out of C# (and VB.NET). Most answers to this earlier StackOverflow question seem to be saying it is a useful part of C++ and there are good reasons to use it. I'd have to agree.

Another recent question seems to me to be really asking how to do something similar to friend in a C# application. While the answers generally revolve around nested classes, it doesn't seem quite as elegant as using the friend keyword.

The original Design Patterns book uses the friend keyword quite often throughout its examples.

Why is friend missing from C#, and what is the "best practice" way (or ways) of simulating it in C#?

(By the way, the "internal" keyword is not the same thing, it allows ALL classes within the entire assembly to access internal members, friend allows you to give access to just one other class.)

flag

Because it's confusing!!! I never understood the friend. – jjnguy Oct 15 '08 at 3:24
i feel protected internal is a good compromise.. – Gulzar Oct 15 '08 at 3:39
It's not too confusing is it? As I said above the GOF book uses it quite often in examples. To me it's no more confusing then internal. – Ash Oct 15 '08 at 3:40

11 Answers

vote up 15 vote down check

Having friends in programming is more-or-less considered "dirty" and easy to abuse. It breaks the relationships between classes and undermines some fundamental attributes of an OO language.

That being said, it is a nice feature and I've used it plenty of times myself in C++; and would like to use it in C# too. But I bet because of C#'s "pure" OOness (compared to C++'s pseudo OOness) MS decided that because Java has no friend keyword C# shouldn't either (just kidding ;))

On a serious note: internal is not as good as friend but it dose get the job done. Remember that it is rare that you will be distributing your code to 3rd party developers not though a DLL; so as long as you and your team know about the internal classes and their use you should be fine.

EDIT Let me clarify how the friend keyword undermines OOP.

Private and protected variables and methods are perhaps one of the most important part of OOP. The idea that objects can hold data or logic that only they can use allows you to write your implementation of functionality independent of your environment - and that your environment cannot alter state information that it is not suited to handle. By using friend you are coupling two classes' implementations together - which is much worse then if you just coupled their interface.

link|flag
So it seems that the reason the 'internal' keyword is in C# but 'friend' is not, is that internal is more explicit then friend. I guess as soon as you see internal, you know immediately it's possible that another class could access them. – Ash Oct 15 '08 at 3:47
What fundamental attributes are undermined? What relationships are broken? I'd like to understand what you're talking about. Thanks in advance! – Esteban Araya Oct 15 '08 at 4:02
I don't think friend was left out for "OO purity". I think it's more likely because the C# is translated to IL when you compile, and the other types you may want to friend are available. It's the same way C++ generics are entirely compile-time, and C#'s aren't. – Stewart Johnson Oct 15 '08 at 5:41
5  
C# 'internal' is actually hurting encapsulation much more than C++ 'friend'. With "friendship", the owner explicitely gives the permission to whoever it wants. "Internal" is an open ended concept. – Nemanja Trifunovic Oct 15 '08 at 17:19
1  
Anders should be praised for the features he left out not the ones he included. – Mehrdad Afshari Apr 16 at 12:26
show 2 more comments
vote up 4 vote down

You can get close to C++ "friend" with the C# keyword "internal".

link|flag
Close, but not quite there. I suppose it depends on how you structure your assemblies/classes, but it would be more elegant to minimise the number of classes given access using friend. FOr example in a utility/helper assembly, not all classes should have access to internal members. – Ash Oct 15 '08 at 3:35
vote up 0 vote down

I suspect it has something to do with the C# compilation model -- building IL the JIT compiling that at runtime. i.e.: the same reason that C# generics are fundamentally different to C++ generics.

link|flag
I think the compiler could support it reasonably easily at least between classes within an assembly. Just a matter of relaxing access checking for the friend class on the target class. Friend between classes in external assemblies may need more fundamental changes to the CLR perhaps. – Ash Oct 15 '08 at 3:39
vote up 4 vote down

You should be able to accomplish the same sorts of things that "friend" is used for in C++ by using interfaces in C#. It requires you to explicitly define which members are being passed between the two classes, which is extra work but may also make the code easier to understand.

If somebody has an example of a reasonable use of "friend" that cannot be simulated using interfaces, please share it! I'd like to better understand the differences between C++ and C#.

link|flag
Good point. Did you have a chance to look at the earlier SO question (asked by monoxide and linked above?. I'd be interested in how best to solve that in C#? – Ash Oct 15 '08 at 3:44
I'm not sure exactly how to do it in C#, but I think Jon Skeet's answer to monoxide's question points in the right direction. C# allows nested classes. I haven't actually tried to code out and compile a solution, though. :) – Parappa Oct 15 '08 at 3:53
vote up 6 vote down

If you are working with C++ and you find your self using friend keyword, it is a very strong indication, that you have a design issue, because why the heck a class needs to access the private members of other class??

link|flag
I agree. I never need the friend keyword. It's generally used to solve complex maintenance issues. – Edouard A. Jan 19 at 16:29
Operator overloading, anyone?? – jnylen Sep 22 at 1:27
how many times you found a good case for operator overloading seriously ? – bashmohandes Sep 30 at 22:17
vote up 5 vote down

For info, another related-but-not-quite-the-same thing in .NET is [InternalsVisibleTo], which lets an assembly designate another assembly (such as a unit test assembly) that (effectively) has "internal" access to types/members in the original assembly.

link|flag
vote up 2 vote down

This is actually not an issue with C#. It's a fundamental limitation in IL. C# is limited by this, as is any other .Net language that seeks to be verifiable. This limitation also includes managed classes defined in C++/CLI (Spec section 20.5).

That being said I think that Nelson has a good explanation as to why this is a bad thing.

link|flag
vote up 7 vote down

On a side note. Using friend is not about violating the encapsulation, but on the contrary it's about enforcing it. Like accessors+mutators, operators overloading, public inheritance, downcasting, etc., it's often misused, but it does not mean the keyword has no, or worse, a bad purpose.

See Konrad Rudolph's message in the other thread, or if you prefer see the relevant entry in the C++ FAQ lite.

link|flag
vote up 1 vote down

Friend is extremely useful when writing unit test.

Whilst that comes at a cost of polluting your class declaration slightly, it's also a compiler-enforced reminder of what tests actually might care about the internal state of the class.

A very useful and clean idiom I've found is when I have factory classes, making them friends of the items they create which have a protected constructor. More specifically, this was when I had a single factory responsible for creating matching rendering objects for report writer objects, rendering to a given environment. In this case you have a single point of knowledge about the relationship between the report-writer classes (things like picture blocks, layout bands, page headers etc.) and their matching rendering objects.

link|flag
vote up 2 vote down

Friends are not necessarily bad. Just like in real life, you just have to choose them carefully.

link|flag
vote up 1 vote down

I can certainly see scenarios where they can be very useful, as already mentioned Unit Testing.

But do you really want your friends accessing your privates?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.