Consider the following code:
class MyClass
{
template <typename Datatype>
friend MyClass& operator<<(MyClass& MyClassReference, Datatype SomeData);
// ...
};
template <typename Datatype>
MyClass& operator<<(MyClass& MyClassReference, Datatype SomeData)
{
// ...
}
How can I define operator<< inside the class, rather than as a friend function? Something like this:
class MyClass
{
// ...
public:
template <typename Datatype>
MyCLass& operator<<(MyClass& MyClassReference, Datatype SomeData)
{
// ...
}
};
The above code produces compilation errors because it accepts two arguments. Removing the MyClassReference argument fixes the errors, but I have code that relies on that argument. Is MyClassReference just the equivalent of *this?
MyClassa template that takes aDataTypetype argument? – David Rodríguez - dribeas Mar 3 '11 at 8:42Datatypewas used in lieu of an actual type for demonstration purposes. – Maxpm Mar 3 '11 at 17:27templatein what seems to be a definition? You are declaring a friend function, but defining a template which is a different beast and as such not a friend. – David Rodríguez - dribeas Mar 3 '11 at 19:41template <typename T> void foo( T );is a template,void foo( int );is a function,f(1)is a call to the non-template function andf<int>(5)is a call to the templated function. They are different things, so you cannot befriend one and expect the other to have access. I have added an answer below. If that is not clear enough, tell me and I will try to extend it. – David Rodríguez - dribeas Mar 3 '11 at 20:19