首页 > 代码库 > java类中定义接口
java类中定义接口
今天看到一个java类中定义了接口,写个备忘录,记录一下
1 package com.gxf.test; 2 3 public class Test_interface { 4 public interface show{ 5 public void show(); 6 } 7 static class TestInterface implements show{ 8 9 @Override10 public void show() {11 System.out.println("this is interface!");12 13 }14 15 }16 17 public static void main(String []args){18 TestInterface testInterface = new TestInterface();19 testInterface.show();20 }21 }
java类中定义接口
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。