ifstream and ofstream or fstream using in and out
问题 When dealing with files, which of the two examples below is preferred? Does one provide better performance than the other? Is there any difference at all? ifstream input("input_file.txt"); ofstream output("output_file.txt"); vs fstream input("input_file.txt",istream::in); fstream output("output_file.txt",ostream::out); 回答1: Performance-wise, there are probably only negligible differences in this case. At best you're saving a little memory. What matters is that the first case helps with the