介面預設方法和靜態方法 預設方法 如果類的父類的方法和介面中方法名字相同且參數一致,子類還沒有重寫方法,那麼預設使用父類的方法,即類優先 如果類實現的介面中有名字相同參數類型一致的預設方法,那麼在類中必須重寫 靜態方法 重覆註解 以前我們是這樣使用註解,當要在一個方法上標註兩個相同的註解時會報錯,j ...
介面預設方法和靜態方法
預設方法
interface MyInterface1 {
default String method1() {
return "myInterface1 default method";
}
}
class MyClass{
public String method1() {
return "myClass method";
}
}
/**
* 父類和介面中都有相同的方法,預設使用父類的方法,即類優先
* @author 莫雨朵
*
*/
class MySubClass1 extends MyClass implements MyInterface1{
}
@Test
public void test1() {
MySubClass1 mySubClass1=new MySubClass1();
System.out.println(mySubClass1.method1());//myClass method
}
如果類的父類的方法和介面中方法名字相同且參數一致,子類還沒有重寫方法,那麼預設使用父類的方法,即類優先
interface MyInterface1 {
default String method1() {
return "myInterface1 default method";
}
}
interface MyInterface2 {
default String method1() {
return "myInterface2 default method";
}
}
/**
* 如果類實現的介面中有名字相同參數類型一致的預設方法,那麼在類中必須重寫
* @author 莫雨朵
*
*/
class MySubClass2 implements MyInterface1,MyInterface2{
@Override
public String method1() {
return MyInterface1.super.method1();
}
}
@Test
public void test2() {
MySubClass2 mySubClass2=new MySubClass2();
System.out.println(mySubClass2.method1());//myInterface1 default method
}
如果類實現的介面中有名字相同參數類型一致的預設方法,那麼在類中必須重寫
靜態方法
interface MyInterface1 {
static String method2() {
return "interface static method";
}
}
@Test
public void test3() {
System.out.println(MyInterface1.method2());//interface static method
}
重覆註解
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MAnnotation {
String name() default "";
int age();
}
public class AnnotataionTest {
@Test
public void test() throws Exception {
Class<AnnotataionTest> clazz=AnnotataionTest.class;
Method method = clazz.getMethod("good", null);
MAnnotation annotation = method.getAnnotation(MAnnotation.class);
System.out.println(annotation.name()+":"+annotation.age());
}
@MAnnotation(name="tom",age=20)
public void good() {
}
}
以前我們是這樣使用註解,當要在一個方法上標註兩個相同的註解時會報錯,java8允許使用一個註解來存儲註解,可以實現一個註解重覆標註
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Repeatable(MAnnotations.class)//使用@Repeatable來標註存儲註解的註解
public @interface MAnnotation {
String name() default "";
int age();
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MAnnotations {
MAnnotation[] value();
}
public class AnnotataionTest {
@Test
public void test() throws Exception {
Class<AnnotataionTest> clazz=AnnotataionTest.class;
Method method = clazz.getMethod("good");
MAnnotation[] mAnnotations = method.getAnnotationsByType(MAnnotation.class);
for (MAnnotation annotation : mAnnotations) {
System.out.println(annotation.name()+":"+annotation.age());
}
}
@MAnnotation(name="tom",age=20)
@MAnnotation(name="jack",age=25)
public void good() {
}
}