Synch.java
上传用户:fbh598
上传日期:2007-07-05
资源大小:5960k
文件大小:0k
源码类别:

Java编程

开发平台:

Unix_Linux

  1. public class Synch
  2. {
  3.   public synchronized void s()
  4.     {
  5.       // This call to notify() isn't supposed to cause a
  6.       // java.lang.IllegalMonitorStateException.
  7.       notify ();
  8.     }
  9.   public static void main (String[] args)
  10.     {
  11.       (new Synch()).s();
  12.       System.out.println ("Ok");
  13.     }
  14. }