那我第一次使用 fstream::seekg() 和 tellg() 函数,于是我就写了个测试程序: void RandomFileReader(){ using std::ifstream; string fn = "d:\testfile.txt"; ifstream ifs(fn.c_str()); string line; std::getline(ifs,line); while(!line.empty()){ //output current lin...