• 2022-10-26
    要建立文件流并打开当前目录下的文件file.dat用于输入,下列语句中错误的是()。
    A: ifstreamfin=ifstream.open(“file.dat”);
    B: ifstream*fin=newifstream(“file.dat”);
    C: ifstreamfin;fin.open(“file.dat”);
    D: ifstream*fin=newifstream();fin->open(“file.dat”);
  • 举一反三