rror: unable to find numeric literal operator 'operator""s' 110 | std::this_thread::sleep_for(1s); 这个错误通常是由于你使用了 C++14 的字面量后缀(如s)而没有正确包含相关的头文件。在 C++11 及以后的版本中,标准库为你提供了一些时间单位的字面量,例如秒、毫秒等。为了能够使用这些字面量,你需...
C:/msys64/mingw64/include/c++/7.3.0/thread:288:26: error: no match for 'operator<' (operand types are 'std::thread::native_handle_type {aka ptw32_handle_t}' and 'std::thread::native_handle_type {aka ptw32_handle_t}') return __x._M_thread < __y._M_thread; ~~~^~~~ <-...