在类中方法可以访问方法?
怎么样可以在类中方法相互访问
怎么样可以在类中方法相互访问
2016-11-12
public class bb {
static int score1 = 86;
static int score2 = 92;
bb(){int allScore=score1+score2;
System.out.println("总分:" + allScore);}
static void dd(){ int allScore=score1+score2;
System.out.println("1总分:" + allScore);}
static void ee(){bb.dd();};
public static void main(String[] args) {
bb.dd(); // 调用bb类中的静态方法dd()
bb.ee(); //调用bb类中的静态方法ee()
bb aa= new bb(); // 通过构建方法得到实例aa
aa.dd(); // 实例aa调用bb类中的静态方法dd()
}
}
类中应该可以方法调用同类中的方法,比如上面的ee方法就是调用同类中的dd方法,可以跑出结果不报错,实际上我也才0编程基础自学一个星期,不一定说的正确。
举报