|
书上的例程:
#include<iostream.h>
#include<fstream.h>
#include<string.h>
int main()
{
ofstream outfile("out_file");
ifstream infile("in_file");
if(! infile)
{
cerr<<"error:unable to open input file!\n";
return -1;
}
if(!outfile)
{
cerr<<"error:unable to open output file!\n";
return -2;
}
string word ;
while (infile>>word)
{
outfile<<word<<' ';
}
return 0;
}
编译时报错:22:Undefined symbol 'string'
22:Statement missing;
23:Undefined symbol 'word'
如果将22行换成char word[];程序就没有问题。请大侠帮我看看究竟是什么问题。谢谢了。 |
|