方法引用

博客主要介绍了Java中的引用符相关内容,包括通过对象名引用成员方法、通过类名引用静态方法、通过this/super引用成员方法以及通过类名引用构造器等几种引用方式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

引用符

//	::

通过对象名引用成员方法

//	对象名::成员方法
//	示例
s -> sample::sampleMethod(s);
sample::sampleMethod;

通过类名引用静态方法

//	类名::静态方法
s -> Math.sqrt(s);
Math::sqrt;

通过this/super引用成员方法

//	this::成员方法
//	super::成员方法
//	this
() -> this.thisMethod();
this::thisMethod;

//	super
() -> new Father().fatherMethod();
super::fatherMethod;

通过类名引用构造器

//	类名::new
//	数组::new
//	类构造器
() -> new Sample();
Sample::new;

//	数组
String[] strings = method(int length, length -> new String[length]);
String[] strings = method(int length, String[]::new);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值