java之接口相关知识
2020-12-13 03:39
阅读:456
标签:str 相关 ima bst 并且 strong interface void inter 1、接口用interface来声明 2、接口中的方法是抽象方法,抽象不能有方法体,并且接口中的方法默认的访问修饰符为public abstract 3、JDK1.8中,接口中的方法可以被default和static修饰,但是被修饰的方法必须有方法体 java之接口相关知识 标签:str 相关 ima bst 并且 strong interface void inter 原文地址:https://www.cnblogs.com/wgblog-code/p/11082198.html
//定义一个动物接口
public interface Animal{
public void eat();
public void travel();
}
评论
亲,登录后才可以留言!