class Student{
public void tell(){
System.out.println("Hello jikexueyuan");
}
public void main{
Student stu=new Student();
stu.tell();
//匿名对象可以直接new 但是只能使用一次
new Student.tell();
}
}
时间: 2024-10-24 10:29:42
class Student{
public void tell(){
System.out.println("Hello jikexueyuan");
}
public void main{
Student stu=new Student();
stu.tell();
//匿名对象可以直接new 但是只能使用一次
new Student.tell();
}
}