为什么 std::cout 和 printf() 不在 usleep() 延迟之间打印?
Why do std::cout and printf() not print between usleep() delays?
我有一个程序可以在缓慢滚动的文本中打印 "Hello, World!"。我正在为 usleep() 函数使用 unistd.h 库,并且我正在使用 std::cout 将字符打印到标准输出:
#include <iostream>
#include <stdio.h>
#include <unistd.h>
char hello[13]={'H','e','l','l','o',',',' ','W','o','r','l','d'};
int main (){
for(int i=0; i<14; i++){
std::cout<<hello[i]; //it prints the entire string after
usleep(100000); //100000 ms, but it should print a char after
} //every 100 ms.
}
您可能需要刷新输出流。
我有一个程序可以在缓慢滚动的文本中打印 "Hello, World!"。我正在为 usleep() 函数使用 unistd.h 库,并且我正在使用 std::cout 将字符打印到标准输出:
#include <iostream>
#include <stdio.h>
#include <unistd.h>
char hello[13]={'H','e','l','l','o',',',' ','W','o','r','l','d'};
int main (){
for(int i=0; i<14; i++){
std::cout<<hello[i]; //it prints the entire string after
usleep(100000); //100000 ms, but it should print a char after
} //every 100 ms.
}
您可能需要刷新输出流。