gpt4 book ai didi

c++ - 何时以及为何需要 sleep()?

转载 作者:太空狗 更新时间:2023-10-29 23:21:02 25 4
gpt4 key购买 nike

cout<<"abcd";

sleep(100);

cout<<'\b';

如果我想打印出字符串然后取回一个字符,为什么这里需要 sleep()?

但是在C语言中使用printf时,好像没有必要,为什么?

char* a = "12345";
char* b = "67890";
threadA(){cout<<a;}
threadB(){cout<<b;}

beginthread (threadA);
sleep(100);
beginthread (threadB);

在上面的第二个伪代码中,使用sleep()是否正确?

最佳答案

用于计算明天的日期:

void get_tomorrow_date( struct timeval *date )
{
sleep( 86400 ); // 60 * 60 * 24
gettimeofday( date, 0 );
}

;)

关于c++ - 何时以及为何需要 sleep()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/658973/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com