我有路由:
fstream *io = new fstream("FILE/myFile.txt" , ios_base::in | ios_base::out);
if(!io -> is_open()){
cout << "Could not open file or file does not exist!" << endl;
exit(1);
}
*io << "Hello World"
在模板中我有计时器,谷歌地图等。有没有保存模板状态的选项?当我改变路线并返回时重新加载模板,我只想加载模板一次。