小可爱

java接口中的default方法

电脑版发表于:2020/3/8 12:31

在java8以后,接口中可以添加使用default或者static修饰的方法,default修饰方法只能在接口中使用,在接口种被default标记的方法为普通方法,可以直接写方法体。


实现类会继承接口中的default方法

例如:

public interface A {
	public default void a(){
		System.out.println("这是A");
	}
}


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢