匿名对象的说明
Posted damocless
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了匿名对象的说明相关的知识,希望对你有一定的参考价值。
匿名对象
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);
}
}
以上是关于匿名对象的说明的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段