java void方法_Java对象类的最终void wait(long ms)方法,包含示例

java void方法

对象类最终无效等待(长毫秒) (Object Class final void wait(long ms))

  • This method is available in java.lang.Object.wait(long ms).

    此方法在java.lang.Object.wait(long ms)中可用。

  • This method causes the current thread to wait for a specified amount of time until another thread notification by calling notify() or notifyAll() method of the object.

    此方法使当前线程等待指定的时间,直到通过调用对象的notify()notifyAll()方法发出另一个线程通知为止。

  • This method throws an InterruptedException when other thread interrupted current thread.

    当其他线程中断当前线程时,此方法将引发InterruptedException

  • This method can't override because it is final.

    此方法是最终方法,因此无法覆盖。

  • The time will be given in the method is of milliseconds.

    该方法将给出的时间以毫秒为单位。

Syntax:

句法:

    final void wait(long ms){
    }

Parameter(s):

参数:

We can pass an object(How long a thread has to wait i.e. we have to mention time in milliseconds) as a parameter in the method of the Object class.

我们可以在Object类的方法中将一个对象(线程必须等待多长时间,即必须提到毫秒)作为参数传递。

Return value:

返回值:

The return type of this method is void that means this method returns nothing after execution.

该方法的返回类型为void ,这意味着该方法在执行后不返回任何内容。

Java程序演示对象类等待(长毫秒)方法的示例 (Java program to demonstrate example of Object Class wait(long ms) method)

import java.lang.Object;

public class Thread1 {
    public static void main(String[] args) throws InterruptedException {

        // Create an object of Thread2

        Thread2 t2 = new Thread2();

        // By calling start() so Thread start() will exceute
        t2.start();

        Thread.sleep(1000);

        synchronized(t2) {

            System.out.println("Main thread trying to call wait()");

            // By calling wait() causes the current thread to wait 
            // for 1000 milliseconds until another   thread notification
            t2.wait(1000);

            System.out.println("Main Thread get notification here");
            System.out.println(t2.total);

        }

    }
}

class Thread2 extends Thread {

    int total = 0;

    public void run() {

        synchronized(this) {

            System.out.println("Thread t2 starts notification");

            for (int i = 0; i < 50; ++i) {

                total = total + i;
            }

            System.out.println("Thread t2 trying to given notification");

            this.notify();

        }

    }
}

Output

输出量

D:\Programs>javac Thread1.java

D:\Programs>java Thread1
Thread t2 starts notification
Thread t2 trying to given notification
Main thread trying to call wait()
Main Thread get notification here
1225


翻译自: https://www.includehelp.com/java/object-class-final-void-wait-long-ms-method-with-example.aspx

java void方法

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值