diff --git "a/\345\271\266\345\217\221\347\274\226\347\250\213/\345\244\232\347\272\277\347\250\213\345\234\250\345\207\275\346\225\260\345\222\214lambda\347\256\227\345\255\220\344\270\255.cpp" "b/\345\271\266\345\217\221\347\274\226\347\250\213/\345\244\232\347\272\277\347\250\213\345\234\250\345\207\275\346\225\260\345\222\214lambda\347\256\227\345\255\220\344\270\255.cpp" index e6a5ed0..43e619a 100644 --- "a/\345\271\266\345\217\221\347\274\226\347\250\213/\345\244\232\347\272\277\347\250\213\345\234\250\345\207\275\346\225\260\345\222\214lambda\347\256\227\345\255\220\344\270\255.cpp" +++ "b/\345\271\266\345\217\221\347\274\226\347\250\213/\345\244\232\347\272\277\347\250\213\345\234\250\345\207\275\346\225\260\345\222\214lambda\347\256\227\345\255\220\344\270\255.cpp" @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2020-04-10 17:28:24 - * @LastEditTime: 2020-04-10 18:50:14 + * @LastEditTime: 2020-04-11 17:46:22 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /C++课程学习记录/thread多线程/intro.cpp @@ -48,10 +48,11 @@ int main() { t2.join(); auto stopTime = high_resolution_clock::now(); - auto duration = duration_cast(stopTime - startTime); + auto duration = duration_cast(stopTime - startTime); + // 1seconds = 1,000milliseconds 毫秒 = 1,000,000microseconds 微秒 = 1,000,000,000nanosecond 纳秒 cout << "EvenSum = " << EvenSum << endl; cout << "OddSum = " << OddSum << endl; - cout << "duration = " << duration.count() / 1000000 << endl; + printf("%.2fs\n", float(duration.count()/1000.0)); return 0; }