c++ - 模板类的友元函数 : C++

标签 c++

我写了一段代码:

#include <iostream>
#include <cassert>

using namespace std;

template<typename T>
class dynArray{
    int size;
    T* ptr;
    public:
    dynArray(int n=0);
    ~dynArray();
    T& operator[] (const int index);
    friend ostream& operator<<<T>(ostream& os,const dynArray<T>& A);
    };

template<typename T> dynArray<T>::dynArray(int n):size(n){
if (size==0)
{
 cout << "Size Zero"<< endl;
 ptr=NULL;}
 else
 {
     try{
         ptr = new T[size];
         cout << "Constructor Called" << endl;
         }
     catch(bad_alloc xa)
     {
         cout << "Allocation Failure" <<endl;
         exit(EXIT_FAILURE);
         }
     }
}

template<typename T> dynArray<T>::~dynArray(){
    cout << "Destructor Called for array of size : " << size << endl;
    delete[] ptr;
    }

template<typename T> T& dynArray<T>::operator[] (const int index){
    assert(index >=0 && index <size);
    return *(ptr+index);
    }

template<typename T> ostream& operator<< <T>(ostream& os,const dynArray<T>& A){
    for (int i=0; i < A.size ; i++)
    os << *(A.ptr+i) << " ";
    return os;
    }

int main()
{
    dynArray<int> array1;
    dynArray<int> array2(5);

    array2[0]=15;
    array2[3]= 45;


    cout << array2 << endl;

    return 0;
}

但是编译时出现错误:

$ g++ -Wall DynArray.cpp -o DynArray
DynArray.cpp:46: error: partial specialization `operator<< <T>' of function template
DynArray.cpp: In instantiation of `dynArray<int>':
DynArray.cpp:54:   instantiated from here
DynArray.cpp:14: error: template-id `operator<< <int>' for `std::basic_ostream<char, std::char_traits<char> >& operator<<(std::basic_ostream<char, std::char_traits<char> >&, const dynArray<int>&)' does not match any template declaration
DynArray.cpp: In function `std::ostream& operator<<(std::ostream&, const dynArray<T>&) [with T = int]':
DynArray.cpp:61:   instantiated from here
DynArray.cpp:8: error: `int dynArray<int>::size' is private
DynArray.cpp:47: error: within this context
DynArray.cpp:9: error: `int*dynArray<int>::ptr' is private
DynArray.cpp:48: error: within this context

我认为 operator<< 的模板语法是错误的。有人可以帮忙吗?无法找出错误在哪里。

最佳答案

你不能friend未声明的模板函数的特化。您需要声明operator <<预先。当然,为此,您需要已经有 dynArray 声明。这些困惑的前向声明看起来像这样( Live at Coliru ):

template<typename T> class dynArray;

template<typename T>
ostream& operator << (ostream& os, const dynArray<T>& A);

template<typename T>
class dynArray {
    // ...
    friend ostream& operator<< <T>(ostream& os, const dynArray& A);
    };

@ooga points out in his comment ,友元声明中的模板参数是不必要的;编译器可以推导出它们。您可以简单地将其声明为:

friend ostream& operator<< <> (ostream& os, const dynArray& A);

我个人认为在这种情况下语法有点标点符号过多。

或者,如果您发现前向声明令人反感,您可以为 dynArray 的每个特化声明一个单独的非模板友元函数。通过在类定义中定义它( Coliru again ):

template<typename T>
class dynArray {
    // ...
    friend ostream& operator<< (ostream& os,const dynArray& A) {
        for (int i=0; i < A.size ; i++)
        os << *(A.ptr+i) << " ";
        return os;
    }
};

关于c++ - 模板类的友元函数 : C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21567771/

相关文章:

android - QT 5.2 Beta 将 QTQuick 部署到 Android 失败 : Invalid json file

c++ - G++ 4.9 - 模块范围内的函数没有被调用?

c++ - MSVC 2013 'type': 不是 'std::enable_if<false,void> 的成员

c++ - 为什么 clang-format 在 getter 的大括号之前没有中断?

C++:boost::asio:async_resolve() 不起作用(使用 lambda 函数),但 resolve() 起作用

c++ - PostMessage 不适用于 WM_PASTE,mfc

c++ - 向可变参数模板类添加回调 - 不可能?

c++ - "using"关键字在 C++ 中究竟做了什么?

c++ - MinGW 找不到 OpenGL 命令

c++ - 如何从 vector 中删除重复的单词?