ofstream是<fstream>库函数中定义的一个类型名称,是文件见输出类型。这行代码定义了一个ofstream的对象名字为of,这个of在初始化过程中打开文件"student.txt"。如果student.txt文件不存在,则创建该文件。使用ofstream类型,需要在代码中 # include <fstream> 因为名称空间问题,使用过程中还需要using names...