Tagged Questions
7
votes
6answers
1k views
Using a friend class vs. adding accessors for unit testing in C++?
Is it better to add functions that return the internal state of an object for unit testing, as opposed to making the testing class a friend? - especially, when there is no use for the functions except ...
5
votes
3answers
209 views
Inheriting friendship in C++?
Since class friendship is not inherited in C++, what's the best way to "fake" it?
I was thinking about exposing the friend class's private interface through protected methods in the to-be-inherited ...
4
votes
4answers
177 views
Definition of friend class and accessor sections
When defining a class as a friend class, does it matter in which accessor section the definitions is placed, and if so does that change the members the friend has access to?
class aclass
{
private:
...
3
votes
5answers
129 views
Keeping part of public nested class visible only to the nesting class
I have a nested class in c++ which has to be public. But I need some of its methods visible to the outer world, and the rest visible only to the nesting class. That is:
class set {
public:
class ...
1
vote
2answers
47 views
friend class doesn't do well with me?
I am trying to deal with friend class for the first time. I wrote the code below:
class Kind{
private:
friend class Type;
int x;
public:
Kind(){ x=0; }
void setX(int X) { x =X; }
...
1
vote
5answers
114 views
Why does friend class crash on static function call?
#include <iostream>
using namespace std;
class CClass
{
private:
friend class CFriend;
static void privateFunc(){std::cout << "privateFunc" << std::endl;};
};
class CFriend
...
1
vote
3answers
132 views
how to link two template classes in many-to-many friendship?
assume that I have the following two template classes :
template <class _A>
class First
{
private:
int a;
};
template <class _B>
class Second
{
private:
int b;
};
how can I ...