C语言中, printf("number\n") 比 printf("number") 、C++中, std::cout << number << std::endl 比 std::cout << number 、Python 中, print number 比 print number,都要花上更多的时间,比如从一打印到一百万,C中相差了7秒,C++ 5秒,Python 10秒(虽然python中后一种是把换行改成空格)。请问为什么会这样?
慕姐4208626
相关分类