📜  c++ 每 1 分钟执行一次 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:54.279000             🧑  作者: Mango

代码示例1
#include 
#include 

int main() {

  while (true) {
    std::this_thread::sleep_for(std::chrono::seconds(60));
    // call your c++ code
  }

}