作者在 2009-04-02 20:55:22 发布以下内容
红色部分代码必不可少
#include <fstream>
using namespace std;
ifstream fin("abc.txt");
template <class T>
class abc{
T data;
public:
template <class T>
friend ifstream& operator>>( ifstream &, abc<T> & );
};
template <class T>
ifstream& operator>>( ifstream &fin, abc<T> &t )
{
fin >> t.data;
return fin;
}
int main()
{
abc<int> t;
fin >> t;
return 0;
}