overloading friend operator<< for template class

后端 未结 5 736
误落风尘
误落风尘 2020-11-22 01:34

I have read couple of the questions regarding my problem on StackOverflow.com now, and none of it seems to solve my problem. Or I maybe have done it wrong... The overloaded

相关标签:
5条回答
  • 2020-11-22 02:03

    You can't declare a friend like that, you need to specify a different template type for it.

    template <typename SclassT>
    friend ostream& operator<< (ostream & os, const D<SclassT>& rhs);
    

    note SclassT so that it doesn't shadow classT. When defining

    template <typename SclassT>
    ostream& operator<< (ostream & os, const D<SclassT>& rhs)
    {
      // body..
    }
    
    0 讨论(0)
  • 2020-11-22 02:20

    This is one of those frequently asked questions that have different approaches that are similar but not really the same. The three approaches differ in who you are declaring to be a friend of your function --and then on how you implement it.

    The extrovert

    Declare all instantiations of the template as friends. This is what you have accepted as answer, and also what most of the other answers propose. In this approach you are needlessly opening your particular instantiation D<T> by declaring friends all operator<< instantiations. That is, std::ostream& operator<<( std::ostream &, const D<int>& ) has access to all internals of D<double>.

    template <typename T>
    class Test {
       template <typename U>      // all instantiations of this template are my friends
       friend std::ostream& operator<<( std::ostream&, const Test<U>& );
    };
    template <typename T>
    std::ostream& operator<<( std::ostream& o, const Test<T>& ) {
       // Can access all Test<int>, Test<double>... regardless of what T is
    }
    

    The introverts

    Only declare a particular instantiation of the insertion operator as a friend. D<int> may like the insertion operator when applied to itself, but it does not want anything to do with std::ostream& operator<<( std::ostream&, const D<double>& ).

    This can be done in two ways, the simple way being as @Emery Berger proposed, which is inlining the operator --which is also a good idea for other reasons:

    template <typename T>
    class Test {
       friend std::ostream& operator<<( std::ostream& o, const Test& t ) {
          // can access the enclosing Test. If T is int, it cannot access Test<double>
       }
    };
    

    In this first version, you are not creating a templated operator<<, but rather a non-templated function for each instantiation of the Test template. Again, the difference is subtle but this is basically equivalent to manually adding: std::ostream& operator<<( std::ostream&, const Test<int>& ) when you instantiate Test<int>, and another similar overload when you instantiate Test with double, or with any other type.

    The third version is more cumbersome. Without inlining the code, and with the use of a template, you can declare a single instantiation of the template a friend of your class, without opening yourself to all other instantiations:

    // Forward declare both templates:
    template <typename T> class Test;
    template <typename T> std::ostream& operator<<( std::ostream&, const Test<T>& );
    
    // Declare the actual templates:
    template <typename T>
    class Test {
       friend std::ostream& operator<< <T>( std::ostream&, const Test<T>& );
    };
    // Implement the operator
    template <typename T>
    std::ostream& operator<<( std::ostream& o, const Test<T>& t ) {
       // Can only access Test<T> for the same T as is instantiating, that is:
       // if T is int, this template cannot access Test<double>, Test<char> ...
    }
    

    Taking advantage of the extrovert

    The subtle difference between this third option and the first is in how much you are opening to other classes. An example of abuse in the extrovert version would be someone that wants to get access into your internals and does this:

    namespace hacker {
       struct unique {}; // Create a new unique type to avoid breaking ODR
       template <> 
       std::ostream& operator<< <unique>( std::ostream&, const Test<unique>& )
       {
          // if Test<T> is an extrovert, I can access and modify *any* Test<T>!!!
          // if Test<T> is an introvert, then I can only mess up with Test<unique> 
          // which is just not so much fun...
       }
    }
    
    0 讨论(0)
  • 2020-11-22 02:21

    I think you shouldn't make friend in the first place.

    You can create a public method call print, something like this (for a non template class):

    std::ostream& MyClass::print(std::ostream& os) const
    {
      os << "Private One" << privateOne_ << endl;
      os << "Private Two" << privateTwo_ << endl;
      os.flush();
      return os;
    }
    

    and then, outside the class (but in the same namespace)

    std::ostream& operator<<(std::ostream& os, const MyClass& myClass)
    {
      return myClass.print(os);
    }
    

    I think it should work also for template class, but I haven't tested yet.

    0 讨论(0)
  • 2020-11-22 02:23

    Here you go:

    #include <cstdlib>
    #include <iostream>
    using namespace std;
    
    template <class T>
    T my_max(T a, T b)
    {
       if(a > b)      
          return a;
       else
          return b;
    }
    
    template <class classT>
    class D
    {
    public:
       D(classT in)
          : d(in) {};
       bool operator>(const D& rhs) const { return d > rhs.d;};
       classT operator=(const D<classT>& rhs);
    
       template<class classT> friend ostream& operator<< (ostream & os, const D<classT>& rhs);
    private:
       classT d;
    };
    
    template<class classT> ostream& operator<<(ostream& os, class D<typename classT> const& rhs)
    {
        os << rhs.d;
        return os;
    }
    
    
    int main()
    {
    
       int i1 = 1;
       int i2 = 2;
       D<int> d1(i1);
       D<int> d2(i2);
    
       cout << my_max(d1,d2) << endl;
       return 0;
    }
    
    0 讨论(0)
  • 2020-11-22 02:25

    This worked for me without any compiler warnings.

    #include <iostream>
    using namespace std;
    
    template <class T>
    T my_max(T a, T b)
    {
      if(a > b)
        return a;
      else
        return b;
    }
    
    template <class classT>
    class D
    {
    public:
      D(classT in)
        : d(in) {};
    
      bool operator>(const D& rhs) const {
        return (d > rhs.d);
      }
    
      classT operator=(const D<classT>& rhs);
    
      friend ostream& operator<< (ostream & os, const D& rhs) {
        os << rhs.d;
        return os;
      }
    
    private:
      classT d;
    };
    
    
    int main()
    {
    
      int i1 = 1;
      int i2 = 2;
      D<int> d1(i1);
      D<int> d2(i2);
    
      cout << my_max(d1,d2) << endl;
      return 0;
    }
    
    0 讨论(0)
提交回复
热议问题