43 lines
600 B
Java
43 lines
600 B
Java
package data;
|
|
|
|
class SimpleClassFour002 {
|
|
{
|
|
System.out.println("clinit!");
|
|
}
|
|
|
|
public int boo;
|
|
|
|
public static String s;
|
|
|
|
public SimpleClassFour002(int i) {
|
|
}
|
|
|
|
public SimpleClassFour002(String d) {
|
|
}
|
|
|
|
public static Double extraTwo(int i) {
|
|
return 2.0d;
|
|
}
|
|
|
|
void boo() {
|
|
}
|
|
|
|
@SuppressWarnings("unused")
|
|
private static void foo() {
|
|
}
|
|
|
|
public String goo(int i, double d, String p) {
|
|
return p;
|
|
}
|
|
|
|
public static int hoo(long l) {
|
|
return new Long(l).intValue();
|
|
}
|
|
|
|
public static void woo() throws RuntimeException, IllegalStateException {
|
|
}
|
|
|
|
public void extraOne(String s) {
|
|
|
|
}
|
|
} |