Tagged Questions

0
votes
4answers
119 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 …
6
votes
13answers
349 views

How do I find/make programming friends?

I recently got my first programming internship and was extremely excited to finally be able to talk with and interact with fellow programmers. I had this assumption that I would fi …
1
vote
8answers
455 views

Using PHP and MySQL, how to structure a “Friendship” in database for a community website?

For community websites like Facebook, myspace, etc.. They have a feature called "Friendship", means you can add friends, send "add friends request", etc.. How to structure it in d …
6
votes
3answers
273 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 …
3
votes
5answers
332 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 …