home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / exceptions / simple.java < prev    next >
Text File  |  1996-09-28  |  488b  |  22 lines

  1. class simple
  2. {
  3.  
  4.   public static void main(String[] args)
  5.     {
  6.       byte[] bptr = new byte[16];
  7.       byte[] bcpy = null;
  8.  
  9.       try {
  10.          bcpy = (byte [])bptr.clone();
  11.       } catch (CloneNotSupportedException cnse) {
  12.          System.out.println("cloning not supported...");
  13.       }
  14.  
  15.       System.out.println("bcpy has size <" + bcpy.length + ">.");
  16.       System.out.println("bcpy[0] is <" + bcpy[0] + ">.");
  17.       System.out.println("Finished.\n");
  18.  
  19.       System.exit(0);
  20.     }
  21. }
  22.