1 import java.io.*; 2 class ConstantPool { 3 static final int iValue = 32768; 4 static final long lValue = 32768L; 5 static final float fValue = 1.5F; 6 static final double dValue = 1.5; 7 static final String sValue = "Java is ¤ö«z"; 8 DataInput in = (DataInput)(System.in); 9 void method() throws IOException { 10 int i = in.readInt(); 11 } 12 } 13