匿名对象的使用:
class Student{
public void tell(){
System.out.println("Hello World");
}
}
public class ClassDemo03{
public static void main(String[] args){
//匿名对象
new Student().tell();//针对只是用一次,如再次使用还要再次写这一段,就比之前的麻烦了
//new Student().tell();//
}
class Student{
public void tell(){
System.out.println("Hello World");
}
}
public class ClassDemo03{
public static void main(String[] args){
//匿名对象
new Student().tell();//针对只是用一次,如再次使用还要再次写这一段,就比之前的麻烦了
//new Student().tell();//
}
}
所以说,只是使用一次的话,就使用匿名对象;如果多次使用一个方法,就用普通的方法。
构造方法的使用:
package com.company;
import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
class people{
//构造方法
public people(){
System.out.println("Hello World!");
}
}
//注意:构造方法必须与类名一致,且没有返回值。
public class Main{
public static void main(String[] args) {
// write your code here
people per = new people();
}
}
输出为Hello World!