通过类名调用类方法

class Computer{
double x,y;
static double max(double a,double b){
return a>b?a:b;
}
}
class Example4_6{
public static void main(String args[]){
double max=Computer.max(12,45);
System.out.println(max);
}
}

posted on 2013-03-24 16:44  agony·  阅读(361)  评论(0编辑  收藏  举报

导航