请输入您要查询的百科知识:

 

词条 _sleep
释义

函数简介

函数原型:

VS2005: _CRT_OBSOLETE(Sleep) _CRTIMP void __cdecl _sleep(__in unsigned long _Duration);

VC++6.0: _CRTIMP void __cdecl _sleep(unsigned long);

所属库: stdlib.h

函数功能: 实现延时,单位为毫秒。1000毫秒是1秒。 在VS2005中如果使用该函数会有提示: 这个函数将在未来的库中舍弃,请用Sleep函数来代替。

相关函数: Sleep

程序示例

#include <stdio.h>

#include <stdlib.h>

#include <string.h>

int main(void)

{

char i, j;

char commamd[16] = {0};

char color_order[4] = {0};

for(i=0; i<0xf; i++)

{

for(j=0; j<0xf; j++)

{

if(i == j)

{

continue;

}

else

{

memset(color_order, 0, sizeof(color_order));

memset(commamd, 0, sizeof(commamd));

strcpy_s(commamd, 16, "color ");

sprintf(color_order, "%.1X%.1X", i, j);

strncat(commamd, color_order, 2);

printf("command: %s\", commamd);

_sleep(1000);

system(commamd);

}

}

}

return 0;

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/4 4:43:24