我有一个程序可以从带有命令行重定向的文本文件中读取一长串单词。没有文件流。
它使用数据getline(cin, string)
并将其读入向量。然后我的程序处理数据。它还使用动态内存(不确定这个事实是否相关)。
为什么我会收到此错误:
Warning: Your program used more system time (0.001 sec) than user time (0.000 sec).
This may be due to excessive I/O, overly frequent time measurement
(via getrusage for example), or unnecessary system calls.