Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
94 views

How can I declare a friend function in a namespace that takes an inner class as a parameter?

Consider this code: namespace foo {} class A { class B { }; friend int foo::bar( B& ); }; namespace foo { int bar( A::B& ) { } } G++ 4.4.3 tells me: ...
6
votes
2answers
3k views

Operator overloading : member function vs. non-member function?

I read that an overloaded operator declared as member function is asymmetric because it can have only one parameter and the other parameter passed automatically is the 'this' pointer. So no standard ...
5
votes
8answers
1k views

Where would you use a friend function vs a static function?

Where would you use a friend function vs a static function?
4
votes
3answers
204 views

C++0x, user-defined literals with friend operator “”()

Will it be possible and/or useful to define an operator "" (...) as a friend function? class Puzzle { friend Puzzle operator "" _puzzle(const char*, size_t); ... }; void solve(Puzzle); int main() ...
3
votes
1answer
241 views

ADL and friend injection

Consider this code: template <int N> struct X { friend void f(X *) {} }; int main() { f((X<0> *)0); // Error? } compilers seem to heavily disagree. (MSVC08/10 says no, GCC<4.5 ...
3
votes
5answers
263 views

How to split the definition of template friend function within template class?

The following example compiles fine but I can't figure out how to separate declaration and definition of operator<<() is this particular case. Every time I try to split the definition friend is ...
2
votes
2answers
78 views

c++ error : (private data member) was not declared in this scope

Say I have a class like so: class Ingredient { public: friend istream& operator>>(istream& in, Ingredient& target); friend ostream& ...
2
votes
2answers
269 views

How to resolve “class must be used when declaring a friend” error?

class two; class one { int a; public: one() { a = 8; } friend two; }; class two { public: two() { } two(one i) { ...
2
votes
1answer
303 views

Declaring “friend” functions fails under Visual Studio 2008

I am trying to declare a global function as a "friend" of a class: namespace first { namespace second { namespace first { class Second { ...
2
votes
2answers
340 views

friend function in template definition

My question ist related a bit to this one. I want to overload the operator << for some class and I found two different notations that both work: template <class T> class A{ T t; ...
2
votes
1answer
1k views

Template friend function of a template class

I was struggling with the issue described in this question (declaring a template function as a friend of a template class), and I believe the 2nd answer is what I want to do (forward declare the ...
1
vote
6answers
138 views

Which C++ operators can not be overloaded without friend function?

Which C++ operators can not be overloaded at all without friend function?
1
vote
4answers
131 views

Creating a function that is a friend to multiple classes

In the code below, I am trying to create a function "patient_count" that is a friend to the classes "horse" , "pig" , and "dog". I can get the function to be a friend with 1 class but not to all 3. ...
1
vote
2answers
189 views

does anything on the lines of friend function exist in java?

Hi I want to implement a method on the lines of friend function in C++. How can I go about it?If it does not, why java doesn't need it?Please suggest how to implement it.. as in a sample: public ...
1
vote
3answers
342 views

calling a function from a friend function defined in a header in c++

I have redefined the >> operator as a friend function in a template class in the header. In it, i need to call another function called inputHelper that I have also defined in the header. (input ...
0
votes
2answers
53 views

How to use friend function when the class is written inside the namespace

I have created a class inside a namespace now the problem occurs when i would have to use or call the namespace, What could be the possible reason for compiler error ?? namespace name1 { ...
0
votes
4answers
75 views

overloading operator<< to output object members without using friend function

I am refreshing cpp after a long gap, trying to understand the operator overloading methods. I tried to overload "operator<<" to output members of object. but I am unable to do so without using ...
0
votes
3answers
48 views

How to use friend function of local class?

Since a friend function can be declared in a local class as shown in the following example. How can it be used to access members of local class when it is defined in the function definition which ...
0
votes
3answers
87 views

Can't initialize friend function operator <<

I am having a problem with friend functions. I figure this is the only part of the code needed.. My problem is with this function. It says the problem is with the first line, but I don't know how ...
0
votes
2answers
132 views

C++ partial template specialization of stream operator

I have a Matrix class with a friend function to use with operator<<. This all works fine but I now want to partially specialize that friend function to work differently if the Matrix class has ...
0
votes
2answers
112 views

C++ operator overloading on templated class

I have a templated Stack class implemented internally with vector. Here is the content of my (simplified) TStack.h: #include <vector> #include <iostream> template<typename T> ...
0
votes
4answers
86 views

Variable scope error when declaring friend function

Friend functions can't access variables of the classes I'm having a problem with several friend functions not being able to access the variables in classes where they have been declared as friends. ...
0
votes
2answers
276 views

friend not getting the private members

I've a class called Packet That I want to serialize with QDataStream I overloaded operator>> and operator<< and in the over loaded function I called stream << somIntMember Though Its ...
0
votes
2answers
214 views

Defining operator<< Inside Class

Consider the following code: class MyClass { template <typename Datatype> friend MyClass& operator<<(MyClass& MyClassReference, Datatype SomeData); // ... }; template ...
0
votes
1answer
294 views

Friend functions not recognized

I have the following class with a couple friend functions: class Teleport { public: Teleport(); ~Teleport(); void display(); Location teleportFrom(int direction); friend bool ...
0
votes
1answer
349 views

Error in linking to friend functions

I have a class 'Vector3' which is compiled successfully. It contains both non-friend and friend functions, for example, to overload * and << operators when Vector3 is the second operand. The ...
0
votes
1answer
213 views

How can friend function be declared for only one particular function and class?

What's wrong with my code? I tried to compile the code below in the GNU G++ environment and I get these errors: friend2.cpp:30: error: invalid use of incomplete type ‘struct two’ friend2.cpp:5: ...