try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
public class TestSleep {
public static void main(String[] args) {
MyThread2 t1 = new MyThread2("TestSleep");
t1.start();
for(int i=0 ; i <10; i++)
System.out.println("I am Main Thread");
}
}
class MyThread2 extends Thread {
MyThread2(String s) {
super(s);
}
public void run() {
for(int i = 1; i <= 10; i++) {
System.out.println(“I am “+getName());
try {
sleep(1000); //暂停,每一秒输出一次
}catch (InterruptedException e) {
return;
}
}
}
}
public class MyThread extends Thread {
public void run() {
for (int i = 0; i < 100; i++) {
if ((i) % 10 == 0) {
System.out.println(“——-” + i);
}
System.out.print(i);
try {
Thread.sleep(1000);
System.out.print(” 线程睡眠1秒!\n”);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
new MyThread().start();
}
}
PHP sleep() 函数#include<stdio.h>
#include<stdlib.h>
#include<windows.h>
int main()
{
int a = 1;
while (a)
{
printf("Welcome to songjiahao's blog\n");
Sleep(1000);
}
system("pause");
return 0;
}
sleep(seconds)
参数 | 描述 |
---|---|
seconds | 必需。以秒计的暂停时间。 |
若成功,返回 0,否则返回 false。
如果指定的描述 seconds 是负数,该函数将生成一个 E_WARNING。
例子输出:<?php
echo date('h:i:s') . "<br />";
//暂停 10 秒
sleep(10);
//重新开始
echo date('h:i:s');
?>
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛