@@ -1,14 +0,0 @@
-package com.hssx.bms.test;
-
-interface A { //定义一个接口
- //全局常量
- String MESSAGE = "HelloWorld";
- void print(); //定义抽象方法
- default void otherprint() { //定义可以带方法体的默认方法
- System.out.println("默认方法");
- }
-}
@@ -1,13 +0,0 @@
-/**
- * Author: 吴涛涛 cuiyi@itany.com
- * Date : 2019 - 10 - 15 11:36
- * Description:<描述>
- * Version: 1.0
- */
-public abstract class AsClass {
- private String name;
- private String password;
@@ -1,19 +0,0 @@
- * Date : 2019 - 10 - 15 11:35
-public class B implements A {
- @Override
- public void print() {
- public void otherprint() {