一、匿名对象
- 创建标准对象的格式:类名称 对象名=new 类名称();
- 匿名对象就是只有右边的对象,没有左边的名字个赋值运算符:new 类名称();
注意事项
- 匿名对象只能使用唯一的一次,下次再用不得不再创建一个对象
- 使用建议:如果确定有一个对象只需要使用唯一的一次,就可以使用匿名对象
/** * @author :CaiCai * @date : 2022/4/6 16:58 */ /* 创建标准对象的格式: 类名称 对象名=new 类名称(); 匿名对象就是只有右边的对象,没有左边的名字个赋值运算符 new 类名称(); 注意事项: 匿名对象只能使用唯一的一次,下次再用不得不再创建一个对象 使用建议:如果确定有一个对象只需要使用唯一的一次,就可以使用匿名对象 */ public class DemoAnonymous { public static void main(String[] args) { //标准格式 Person one=new Person(); one.name="Cai"; one.study(); System.out.println("=========="); //匿名对象 new Person().name="张三"; new Person().study(); } }
二、匿名对象作为方法的参数
import java.util.Scanner; /** * @author :CaiCai * @date : 2022/4/6 17:15 */ public class DemoAno { public static void main(String[] args) { //普通方式 // Scanner sc=new Scanner(System.in); // int num=sc.nextInt(); //匿名对象的方式 // int num=new Scanner(System.in).nextInt(); // System.out.println("输入的是:"+num); //使用匿名对象进行传参 methodParam(new Scanner(System.in)); Scanner sc= methodReturn(); int num = sc.nextInt(); System.out.println("输入的是:"+num); } public static void methodParam(Scanner sc) { int num = sc.nextInt(); System.out.println("输入的是:" + num); } public static Scanner methodReturn(){ return new Scanner(System.in); } }