Tagged Questions
11
votes
3answers
755 views
Is friendship inherited in C++?
Suppose I have a Base class:
class Base {
friend SomeOtherClass;
};
And there is another (different) class that inherits from Base:
class AnotherClass : public Base {}
Is friendship ...
7
votes
3answers
192 views
Friendship not inherited - what are the alternatives?
This may be a futile question.
I have written/am writing a piece of physics analysis code, initially for myself, that will now hopefully be used and extended by a small group of physicists. None of ...
4
votes
5answers
468 views
When is it prudent to use friendship in OOP?
I'm currently getting through the http://www.cplusplus.com tutorial and I came across this section here: http://www.cplusplus.com/doc/tutorial/inheritance.html that deals with the subject of friend ...
3
votes
3answers
138 views
C++ Friendship and inheritance [closed]
I know that friendship is not inherited. I was asking myself: why? Why the C++ designers decided to not let friendship be inherited? Do you find that friendship inheritance would be a useful thing to ...
2
votes
4answers
365 views
Friendship vs inheritance
I've the class hierarchy below. Basically, I would like to establish a "has-a" relationship between the classes Foo and CComplexMat, i.e. class Foo "has-a" CComplexMat.
From what I know, private and ...
2
votes
2answers
60 views
Call a function in class members (C++)
Consider the following:
These classes are in different header files and each header file has its corrresponding source files.
//------------------------------------------
// in Z.h
class Z
{
...
1
vote
2answers
89 views
How can I call a private destructor from a shared_ptr?
I have a resource_manager class which maintains a std::vector<boost::shared_ptr<resource> > internally. resource_manager is a friend class of resource. I want resources to only be ...
0
votes
3answers
78 views
Friendship problems when overriding operator<<
I'm trying to overload operator<< in the standard way. I have a class called SymbolTable residing in a file called SymbolTable.h as follows:
namespace Compaler // It's a pun; don't ask
{
...
0
votes
5answers
119 views
Alternative to friendship?
Is there any alternative to friendship in the following scenario?
I have a Window class which represents an UI window. Also, a WindowManager class, implemented as a singleton, manages all window ...
0
votes
2answers
40 views
Differing access on a member of a class according to the context
Sorry for the bad shape of the question but I don't really know how to express it
Let's say I have a class MainApp using methods of a dynamic library via an interface FrontEnd
FrontEnd uses ...
0
votes
2answers
87 views
friendship and operator overloading help
I have the following class
#ifndef Container_H
#define Container_H
#include <iostream>
using namespace std;
class Container{
friend bool operator==(const Container &rhs,const ...
0
votes
4answers
286 views
friendship scope c++
In section 11.5.1 of "The C++ Programming Language", Bjarne Stroustrup writes:
Like a member declaration, a friend declaration does not introduce a name into an enclosing scope.
For example:
...