Relates :
|
Name: rm29839 Date: 02/24/98 run Test1 from the command line and the app will hang. // In file Test1.java class Test1 { public static void main( String argv[] ) { System.out.println( "We're here" ); SubClass1.proc1(); } } // In file SubClass1.java import java.awt.*; final public class SubClass1 { public static void proc1() { } private static Font stdFont = new Font( "Arial", Font.BOLD, 14 ); } (Review ID: 25309) ======================================================================
|