当前位置: 技术问答>linux和unix
各位老大,帮我看一下这个程序吧。
来源: 互联网 发布时间:2015-04-24
本文导语: 我在linux下写了下面这个程序: #include #include using namespace std; int main(){ ofstream t("balance", ios::out); int a=t.fdbuf()->fd(); } 报错如下: err: no matching funciton for call to 'std::basic_filebuf::fd; 可是在filebuf类中,明明是有...
我在linux下写了下面这个程序:
#include
#include
using namespace std;
int main(){
ofstream t("balance", ios::out);
int a=t.fdbuf()->fd();
}
报错如下:
err:
no matching funciton for call to 'std::basic_filebuf::fd;
可是在filebuf类中,明明是有fd()这个函数的,哪位大侠告诉我为什么调用不了?
#include
#include
using namespace std;
int main(){
ofstream t("balance", ios::out);
int a=t.fdbuf()->fd();
}
报错如下:
err:
no matching funciton for call to 'std::basic_filebuf::fd;
可是在filebuf类中,明明是有fd()这个函数的,哪位大侠告诉我为什么调用不了?
|
好像ofsrteam没有fdbuf(),有rdbuf()