60 接口
Posted JAVA笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了60 接口相关的知识,希望对你有一定的参考价值。
1 class Demo1_I{ 2 public static void main(String[] args) { 3 // Iner i = new Iner(); // 抽象类和接口无法实例化 4 Inter i = new Demo(); // 父类引用子类 5 i.print(); // 编译在左边 运行在右边 6 } 7 } 8 9 interface Inter{ 10 public abstract void print(); 11 } 12 13 class Demo implements Inter{ 14 public void print(){ 15 System.out.println("10"); 16 }
以上是关于60 接口的主要内容,如果未能解决你的问题,请参考以下文章