关于接口的定义

关于接口的定义:

1、接口

Illegal modifier for the interface T1; only public & abstract are permitted

非法修饰接口T1本身,只允许公共抽象来修饰接口(public abstract  接口)

2、接口属性

Illegal modifier for the interface field T1.s; only public, static & final are permitted

非法修饰接口属性 s,只允许用公共静态最终来修饰接口的属性(public static final  属性,属性必须有初始化值)

3、接口方法

Illegal modifier for the interface method c; only public & abstract are permitted

非法修饰接口方法 c,只允许用公共抽象来修饰方法(public abstract  方法();)

 

 

 

你可能感兴趣的:(接口)