关于c++ ostream和ofstream的问题。请看下面的代码,希望高手详细解答,感激不尽!
#include<iostream>#include<fstream>usingnamespacestd;classtest{private:inta;public:te...
#include <iostream>
#include <fstream>
using namespace std;
class test
{
private:
int a;
public:
test(int c=0){a=c;}
friend ostream &operator<<(ostream &os,test &t);
friend ofstream &operator<<(ofstream &of,test &t);
};
ostream &operator<<(ostream &os,test &t)
{
os << "a=" << t.a;
return os;
}
ofstream &operator<<(ofstream &of,test &t)
{
of << "a=" << t.a;
cout << endl << "haha!";
return of;
}
int main()
{
ofstream fout;
test t1(1);
fout.open("test.txt");
cout << t1;
fout << t1; //如果这里写fout << "haha" << t1;编译器会把fout当做ostream对象来处理
//从而调用第一个函数;而fout << t1;会调用第二个函数,为什么?
fout.close();
return 0;
}
fout << "haha" <<t1调用第一个函数时,一样可以把内容写进文件里。 展开
#include <fstream>
using namespace std;
class test
{
private:
int a;
public:
test(int c=0){a=c;}
friend ostream &operator<<(ostream &os,test &t);
friend ofstream &operator<<(ofstream &of,test &t);
};
ostream &operator<<(ostream &os,test &t)
{
os << "a=" << t.a;
return os;
}
ofstream &operator<<(ofstream &of,test &t)
{
of << "a=" << t.a;
cout << endl << "haha!";
return of;
}
int main()
{
ofstream fout;
test t1(1);
fout.open("test.txt");
cout << t1;
fout << t1; //如果这里写fout << "haha" << t1;编译器会把fout当做ostream对象来处理
//从而调用第一个函数;而fout << t1;会调用第二个函数,为什么?
fout.close();
return 0;
}
fout << "haha" <<t1调用第一个函数时,一样可以把内容写进文件里。 展开
1个回答
展开全部
问题在于你这句
fout << "haha" 调用的 是什么函数呢?
其实是
template<class _Traits> inline
basic_ostream<char, _Traits>& operator<<(
basic_ostream<char, _Traits>& _Ostr,
const char *_Val)
注意 返回的basic_ostream<char, _Traits>&也就是ostream&,并不是 fstream&型
所以 第2次 再调用 << t1 的时候 自然使用了 你定义的
ostream &operator<<(ostream &os,test &t) 运算符重载
fout << "haha" 调用的 是什么函数呢?
其实是
template<class _Traits> inline
basic_ostream<char, _Traits>& operator<<(
basic_ostream<char, _Traits>& _Ostr,
const char *_Val)
注意 返回的basic_ostream<char, _Traits>&也就是ostream&,并不是 fstream&型
所以 第2次 再调用 << t1 的时候 自然使用了 你定义的
ostream &operator<<(ostream &os,test &t) 运算符重载
追问
刚试了一下,如果不定义第二个函数的话也是可以通过编译的。
谢谢你
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询