package ww;
public class helloword {
public static void main(String[] args) {
// TODO Auto-generated method stub
helloword hh=new helloword();
hh.s();
//s();
helloword.s();
}
public static void s(){
System.out.println("123");
}
}
//静态方法才可以调用静态方法。
时间: 2024-10-14 19:04:05