class Student{
public void tell(){
System.out.println("Hello jikexueyuan");
}
public void main{
Student stu=new Student();
stu.tell();
//匿名对象可以直接new 但是只能使用一次
new Student.tell();
}
}
本文共 237 字,大约阅读时间需要 1 分钟。
class Student{
public void tell(){
System.out.println("Hello jikexueyuan");
}
public void main{
Student stu=new Student();
stu.tell();
//匿名对象可以直接new 但是只能使用一次
new Student.tell();
}
}
转载于:https://www.cnblogs.com/shanheyongmu/p/4931446.html