标签:键盘输入 方式 nbsp test ati 匿名 stat static class
匿名对象
new 类名字().name="caorunzhi";
new 类名字().showname(); //null
每一次new就会创建一个新的对象,只能使用唯一一次,如果确定只要使用唯一一次则可以使用new匿名对象;
匿名对象可以作为参数和返回值
public class test1 {
public static void main(String[] args)
{
/*匿名对象的方式*/
// int sc=new Scanner(System.in).nextInt(); /*键盘输入*/
// System.out.println(sc);
/*使用匿名对象进行传参*/
methodparse(new Scanner(System.in));
}
public static void methodparse(Scanner sc)
{
int i=sc.nextInt();
System.out.println(i);
}
/*将匿名对象作为返回值*/
public static Scanner methodreturn()
{
// Scanner sc=new Scanner(System.in);
// return sc;
return new Scanner(System.in);
}
}
标签:键盘输入 方式 nbsp test ati 匿名 stat static class
原文地址:https://www.cnblogs.com/Damocless/p/11849724.html