private static void testMethod(){
System.out.println("testMethod");
}
public static void main(String[] args) {
((Test)null).testMethod();
}
输出:
testMthod
因为是静态方法,所以不需要对象就可以调用。虽然是null也不会报异常。
private static void testMethod(){
System.out.println("testMethod");
}
public static void main(String[] args) {
((Test)null).testMethod();
}
输出:
testMthod
因为是静态方法,所以不需要对象就可以调用。虽然是null也不会报异常。