FileDocCategorySizeDatePackage
NoLocalStatics.javaAPI DocExample348Sat Nov 25 12:55:44 GMT 2000None

NoLocalStatics.java

/**
 * Show that you can't have static variables in a method, unlike C/C++
 */
public class NoLocalStatics {
	public static void main(String[] argv) {
		NoLocalStatics t = new NoLocalStatics();
		t.process();
	}
	void process() {				// EXPECT COMPILE ERROR
		static int a = 42;			// EXPECT COMPILE ERROR
		System.out.println("Process: " + a);
	}
}