本文共 681 字,大约阅读时间需要 2 分钟。
A:接口概述
class Demo1_Interface { public static void main(String[] args) { //Inter i = new Inter(); //接口不能被实例化,因为调用抽象方法没有意义 Inter i = new Demo(); //父类引用指向子类对象 i.print(); }}interface Inter { public abstract void print(); //接口中的方法都是抽象的}class Demo implements Inter { public void print() { System.out.println("print"); }}
转载于:https://blog.51cto.com/357712148/2132096