Tagged Questions
The friend tag has no wiki summary.
70
votes
18answers
18k views
Why does C# not provide the C++ style 'friend' keyword?
The C++ friend keyword allows a class A to designate class B as its friend. This allows Class B to access the private/protected members of class A.
I've never read anything as to why this was left ...
43
votes
23answers
12k views
When should you use 'friend' in C++?
I have been reading through the C++ FAQ and was curious about the friend declaration. I personally have never used it, however I am interested in exploring the language.
What is a good example of ...
25
votes
11answers
10k views
When to use friend class in c++
I was just brushing up on my cpp (I'm a java developer) and I came across the Friend class keyword which I forgot about for a while. Is this one of those features that's just part of the kitchen sink, ...
17
votes
11answers
9k views
Is there a way to simulate the C++ 'friend' concept in Java?
I would like to be able to write a Java class in one package which can access non-public methods of a class in another package without having to make it a subclass of the other class. Is this ...
16
votes
7answers
570 views
In C# 4.0, is there any way to make an otherwise private member of one class available only to a specific other class?
We're creating an object hierarchy where each item has a collection of other items, and each item also has a Parent property pointing to its parent item. Pretty standard stuff. We also have an ...
16
votes
2answers
1k views
Why does a C++ friend class need a forward declaration only in other namespaces?
Suppose I have a class F that should be friend to the classes G (in the global namespace) and C (in namespace A).
to be friend to A::C, F must be forward declared.
to be friend to G, no forward ...
16
votes
8answers
885 views
Why does C++ not allow inherited friendship?
Why is friendship not at least optionally inheritable in C++? I understand transitivity and reflexivity being forbidden for obvious reasons (I say this only to head off simple FAQ quote answers), but ...
14
votes
4answers
494 views
Are inner classes in C++ automatically friends?
If I define an inner class in C++, is it automatically a friend of the class that contains it? For example, is this legal:
class Outer {
public:
class Inner {
public:
void ...
14
votes
10answers
2k views
How does the friend keyword (Class/Function) break encapsulation in C++?
Some programmer said that, "a friend function break the encapsulation in C++". and some programmer also said, "Friend functions do not break encapsulation; instead they naturally extend the ...
14
votes
5answers
1k views
Using “friend”-declarations for unit testing. Bad idea?
[Of course, the question is not restricted to a specific "friend" implementation, feel free though to point out implementation specifics if relevant]
Reading through the unanswered questions, I ...
13
votes
3answers
253 views
Does “friend”ing a class extend to classes declared within that class?
I have the following code where class A declares class B as friend. Should class C, declared within class B, be able to view private declarations/members of class A?
It compiles without error with CL ...
11
votes
5answers
395 views
What is wrong with making a unit test a friend of the class it is testing?
In c++; I have often made a unit test class a friend of the class I am testing. I do this because I sometimes feel the need to write a unit test for a private method, or maybe I want access to some ...
10
votes
1answer
471 views
Is this key-oriented access-protection pattern a known idiom?
Matthieu M. brought up a pattern for access-protection in this answer that i'd seen before, but never conciously considered a pattern:
class SomeKey {
friend class Foo;
SomeKey() {}
// ...
9
votes
5answers
273 views
What's the scope of inline friend functions?
After searching aroung SO, one question taught me that the lexical scope of an inline friend function is the class it's defined in, meaning it can access e.g. the typedefs in the class without ...
9
votes
2answers
134 views
What is the rationale behind the syntax chosen to declare template friends?
Declaring template function friends involves some incredibly unintuitive syntax, even for C++! What is the rationale behind the choice of syntax for the extra <> needed? Wouldn't it make more ...
9
votes
2answers
280 views
Friend declaration in C++ - difference between public and private
Someone told me that there is a difference between declaring a friend class in the public or private areas of the class, but I can't seem to find anything about this online, and I'm not sure they knew ...
9
votes
3answers
389 views
public friend swap member function
In the beautiful answer to the copy-and-swap-idiom there is a piece of code I need a bit of help:
class dumb_array
{
public:
// ...
friend void swap(dumb_array& first, dumb_array& ...
9
votes
2answers
5k views
a class-key must be declared when declaring a friend
The g++ compiler complains with this error when I declare a friend thusly:
friend MyClass;
instead of
friend class MyClass;
Why should the class keyword be required?
(the Borland C++ compiler, ...
8
votes
1answer
331 views
Can we increase the re-usability of this key-oriented access-protection pattern?
Can we increase the re-usability for this key-oriented access-protection pattern:
class SomeKey {
friend class Foo;
// more friends... ?
SomeKey() {}
// possibly non-copyable too
};
...
7
votes
4answers
89 views
How do I make main a friend of my class from within a library?
Please see my first attempt at answering this
. I neglected to tell the whole story before in an attempt to simplify things. Turns out my example works! Sorry.
The whole story is that this is a ...
7
votes
6answers
252 views
Friending a template parameter
It's impossible to friend a template parameter because the standard disallows it. How might I get effectively the same thing then?
What I want is basically a type that is unusable outside the object ...
7
votes
3answers
295 views
Making an undefined class as friend, and defining it later
Making an unknown friend
template<typename T>
class List
{
protected:
class a {
int x;
int y;
private:
friend class b; // <------------ Why this is not an ...
7
votes
2answers
14k views
'Friends' equivalent for Java? [closed]
having a little architectural trouble here.
In C++, we have the notion of 'friends,' where such friend classes can access private members.
So, I'm deving a Java app and trying to adhere to the MVC ...
6
votes
1answer
102 views
friend declaration of template specialization fails
The following code containing friend declaration fails with indicated error (see http://ideone.com/Kq5dy):
template<class T> void foo() {}
template<typename T>
class A {
void foo();
...
6
votes
1answer
132 views
What is the difference of friend iterator and friend class iterator which encounter in thinking in c++?
In Thinking in C++ Volume 1, chapter 16: Introduction to Templates.
The context:
Notice that instead of just saying:
friend iterator; // Make it a friend
This code has:
friend class ...
6
votes
1answer
132 views
C++ Template friend odd behavior
I'm seeing something I can't explain in the following code. Under VS6, VS9, and GCC T2::foo2() gives the error: 'bar' : cannot access protected member declared in class 'C1'. But if you remove ...
6
votes
4answers
2k views
friend declaration declares a non-template function
I have a base Class akin to the code below. I'm attempting to overload << to use with cout.
However, g++ is saying:
base.h:24: warning: friend declaration ‘std::ostream& ...
6
votes
2answers
153 views
Friends confusion
$11.4/5 - "[...]A friend function defined in a class is in the (lexical) scope of the class in which it is defined[...]"
What does this statement mean?
struct A{
typedef int MYINT;
void ...
6
votes
2answers
578 views
Friend access to protected nested class
I have the following C++ code:
class A {
protected:
struct Nested {
int x;
};
};
class B: public A {
friend class C;
};
class C {
void m1() {
B::Nested n; // or A::Nested
}
};
...
6
votes
4answers
180 views
How to name this key-oriented access-protection pattern?
Apparently this key-oriented access-protection pattern:
class SomeKey {
friend class Foo;
SomeKey() {}
// possibly non-copyable too
};
class Bar {
public:
void ...
6
votes
4answers
526 views
clean C++ granular friend equivalent? (Answer: Attorney-Client Idiom)
Why does C++ have public members that anyone can call and friend declarations that expose all private members to given foreign classes or methods but offer no syntax to expose particular members to ...
6
votes
4answers
286 views
How to befriend a templated class's constructor?
Why does
class A;
template<typename T> class B
{
private:
A* a;
public:
B();
};
class A : public B<int>
{
private:
friend B<int>::B<int>();
int x;
};
...
6
votes
3answers
1k views
VB.NET: what does the 'friend' modifier do?
What does the 'friend' modifier do in VB.NET?
Why is it the default modifier for GUI components in Visual Studio?
6
votes
1answer
470 views
Friend Assemblies in C#
I'm trying to create some 'friend assemblies' using the [InternalsVisibleTo()] attribute, but I can't seem to get it working. I've followed Microsoft's instructions for creating signed friend ...
6
votes
4answers
1k views
How do I define friends in global namespace within another C++ namespace?
I'd like to define a binary operator on in the global namespace. The operator
works on a class that is defined in another namespace and the operator should get
access to the private members of that ...
6
votes
2answers
2k views
How do you mark a struct template as friend?
I have code like this:
template <typename T, typename U> struct MyStruct {
T aType;
U anotherType;
};
class IWantToBeFriendsWithMyStruct
{
friend struct MyStruct; //what is the ...
5
votes
4answers
135 views
recursive friend classes
Is there any way around this:
class B;
class C {
public:
C() { }
private:
int i;
friend B::B();
};
class B {
public:
B() { }
private:
int i;
friend C::C();
};
Gives error:
...
5
votes
4answers
285 views
public friend function in C++?
I saw some code in C++ and have a question about it:
class CRectangle {
int width, height;
public:
friend CRectangle duplicate (CRectangle);
};
The variables width and ...
5
votes
3answers
247 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 ...
5
votes
2answers
217 views
How to simulate C++ friend in C# and VB.NET?
Because sometimes, I really need a friend.
I can think of the following tricks:
Read only wrapper - like ReadOnlyCollection. The friend keeps the pointer to the modifiable object, while everyone ...
5
votes
5answers
837 views
How to make boost::make_shared a friend of my class
I have written a class with protected constructor, so that new instances can only be produced with a static create() function which returns shared_ptr's to my class. To provide efficient allocation ...
5
votes
4answers
209 views
Unused friend class in C++
Is there a way to detect (for instance with compiler warning) if classes are declared friend but do not access private members, ie. when friendship is useless?
5
votes
1answer
208 views
Set a project default for VB.NET projects so that the default Modifiers property for controls is Private
Is it possible to set a project default for VB.NET winforms projects so that the default Modifier for controls added to winforms is Private (not Friend)?
I know there's a "modifiers" property in the ...
5
votes
1answer
882 views
Overloading Output operator for a class template in a namespace
I've this program
#include <iostream>
#include <sstream>
#include <iterator>
#include <vector>
#include <algorithm>
using namespace std ;
#if 0
namespace skg
{
...
5
votes
2answers
326 views
Why can't I befriend a template parameter?
When researching an answer to a question (based on this answer) I tried to do the following:
template <class T>
class friendly {
friend class T;
};
friendly<string> howdy;
This ...
4
votes
1answer
121 views
friendship with extern “C” function seems to require :: to qualify name
Trying to make a class friends with an extern "C" function, this code works:
#include <iostream>
extern "C" {
void foo();
}
namespace {
struct bar {
// without :: this refuses to ...
4
votes
2answers
88 views
Access friend function defined in class
There is such code:
#include <iostream>
class A{
public:
friend void fun(A a){std::cout << "Im here" << std::endl;}
friend void fun2(){ std::cout << "Im here2" ...
4
votes
3answers
182 views
Template parameter as a friend
In C++03 the following is illegal, although some compilers support it.
template <class T>
class X
{
friend T;
};
Has this been legalized in C++11? (Sorry, didn't have time to read the ...
4
votes
3answers
168 views
Friend Modules in OCaml
I currently have two "layers" of modules that represent identifier-data relationships in a database.
The first layer defines identifier types, such as IdUser.t or IdPost.t while the second layer ...
4
votes
2answers
293 views
C++ Private Nested Abstract Class
So maybe this is a dumb question and I'm over thinking this, but I have the following situation. I am making a "class Shell" which can run abstract "class Action" objects. It is the only class that ...