Java方法的调用
对比
public static void a(){
b();
};
public void b(){
a();
};
此时a方法里面调用b方法会报错,而b方法中调a不会报错是因为,a方法本身是static方法它和类一起加载时间片较早,而b是类实例化后才会存在,因此会报错
本文来自博客园,作者:Cn_FallTime,转载请注明原文链接:https://www.cnblogs.com/CnFallTime/p/15811301.html
public static void a(){
b();
};
public void b(){
a();
};
本文来自博客园,作者:Cn_FallTime,转载请注明原文链接:https://www.cnblogs.com/CnFallTime/p/15811301.html