以下程序是一个简单的数字时钟 我希望时间能够与系统时间不断同步,并将其显示在控制台的顶部而不会让它干扰我的其他工作,因为在这种情况下你可以看到"你好"在第4行的最后一行永远不会打印,因为它上面的while循环永远不会结束,并且每次循环都会清除屏幕。
我希望我的代码在循环中执行指令,但是 它永远不会到达那一点,因为while循环永远不会在这个程序中结束
#include <ctime>
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
bool loop = true;
while (loop)
{
time_t now = time ( 0 );
tm *local = localtime ( &now );
local->tm_hour -= 6;
system("cls");
cout << ctime ( &now ) <<'\n';
cout<<"check";
Sleep(1000);
}
cout<<"hello";//this is not printed as while loop doesnt ends
cin.get();
return 0;
}
答案 0 :(得分:1)
循环没有结束的原因是你没有结束它。
您在开始时将loop
设置为true,并且只要它保持为真就循环。但是,您实际上从未将其设置为false。
如果您的目标是创建一个在命令行顶部运行的时钟,那将会很困难,但并非不可能。
基本上,您必须使用ncurses等格式库来不断将光标放在要打印时间的行上,使用clrtoeol
清除行,打印时间,然后将光标设置回最后一行。您还必须在主循环中放入一些用户输入并将其发送到shell解释器的内容,如下所示:
std::string command;
cin >> command;
system(command.c_str());
总的来说,使用unix date
命令可能更容易,如下所示:
date "%H:%M:%S"
每次你需要知道它的时间。