検索

ホームページ  >  に質問  >  本文

c++ - 如何为嵌套在一个模板类里面的类添加友元?比如==函数。

template <typename> class Vector;
template <typename T>
bool operator==(const typename Vector<T>::const_iterator&, const typename Vector<T>::const_iterator&); // 友元声明,签名是这么写吗?

template <typename T>
class Vector {
public:
    class const_iterator: {
        friend bool operator==(const const_iterator& lsh, const const_iteraotr& rhs);
    public:
    };
};


template <typename T>
bool operator==(const typename Vector<T>::const_iterator& lhs, const typename Vector<T>::const_iterator& rhs) { // 友元定义

}

如果直接将==友元在const_iterator里面定义,比较简单,直接写就行。但是我想在类外定义时,就不知道怎么写它的函数签名了。

PHP中文网PHP中文网2826日前764

全員に返信(2)返信します

  • 高洛峰

    高洛峰2017-04-17 14:49:42

    最も良いのはこの写本、上面写本の那种似很难实现
    参考

    テンプレート 構造体ベクトル;
    
    テンプレート <タイプ名 T>
    構造体 Vector_const_iterator;
    
    テンプレート <タイプ名 T>
    bool 演算子==(const Vector_const_iterator& lsh, const Vector_const_iterator& rhs);
    
    テンプレート <タイプ名 T>
    構造体ベクトル {
        typedef Vector_const_iterator<T> const_iterator;
    };
    
    テンプレート <タイプ名 T>
    struct Vector_const_iterator {
        友人 bool 演算子 == <> (const Vector_const_iterator& lsh, const Vector_const_iterator& rhs);
    };
    
    
    テンプレート <タイプ名 T>
    bool 演算子==(const Vector_const_iterator& lsh, const Vector_const_iterator& rhs) { 
        true を返します。
    }

    返事
    0
  • PHP中文网

    PHP中文网2017-04-17 14:49:42

    関数の宣言に問題があります。フレンドにはアクセス権のみがあり、クラスのメンバーには権限がありません。

    テンプレート <typename T>
    クラスベクトル {
    公共:
        クラス const_iterator{
            friends bool 演算子==(const typename Vector<T>::const_iterator& lsh,
                                   const typename Vector::const_iterator& rhs);
        公共:
        };
    };
    
    
    テンプレート <タイプ名 T>
    bool演算子==(const typename Vector<T>::const_iterator& lhs, const typename Vector<T>::const_iterator& rhs) { // フレンド定義
      false を返します。
    }

    返事
    0
  • キャンセル返事