On this page
article
hello.java
public class hello {
public static void main(String[] args){
student stu=new student();
stu.spr("nihao");
}
}
class student {
public void spr(String s){
System.out.println(s);
}
}