-
java 类的继承和接口的继承
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
父类 public class person { String name; int age; void eat(){ System.out.println( "吃饭" ); } void introduce(){ System.out.println( "我的名字是" +name + ",我的年龄是" +age); } } |
子类 public class testper extends person { int grade; void study(){ System.out.println("学习,年级是"+this.grade); } }
测试下继承 public class ss { public static void main(String[] args){ testper testper=new testper(); testper.grade=1; testper.name="北京"; testper.age=10; testper.eat(); testper.introduce(); testper.study(); } }
输出
java的继承只能是单继承。
java接口的继承
usb接口:
interface Useb { void read(); void write(); }
wifi接口 public interface WiFi { public void open(); public void close(); }
实现 public class Usebpone implements Useb,WiFi{ public void read() { System.out.println("useb read"); } public void write() { System.out.println("useb write"); } public void open(){ System.out.println("wifi open"); } public void close() { System.out.println("wifi open"); } }
测试 public class test { public static void main(String agrs[]) { Usebpone usbPhone=new Usebpone(); Useb sab=usbPhone; sab.read(); sab.write(); WiFi wiFi=usbPhone; wiFi.open(); wiFi.close(); } }
运行结果
出 处:https://www.cnblogs.com/leiziv5/p/7894830.html
最新更新
带有参数的装饰器
类装饰器
django中的auth模块与admin后台管理
python的日期处理
字符串常用方法
基本数据类型概述
python-map()函数基本用法
python带你实现任意下载AcFun视频数据~
bbs项目之注册功能
变量的定义和使用
三大常用数据库事务详解之三:事务运行
三大常用关系型数据库事务详解之二:基
三大关系型数据库事务详解之一:基本概
MongoDB常用命令(2)
MongoDB基本介绍与安装(1)
SQLServer触发器调用JavaWeb接口
SQL Server索引的原理深入解析
SqlServer2016模糊匹配的三种方式及效率问题
SQL中Truncate的用法
sqlserver 多表关联时在where语句中慎用tri
VB.NET中如何快速访问注册表
ASP.NET中图象处理过程详解
Vue(1)Vue安装与使用
JavaScript 语言入门
js将一段字符串的首字母转成大写
纯原生html编写的h5视频播放器
H5仿原生app短信验证码vue2.0组件附源码地
TypeScript(4)接口
TypeScript(3)基础类型
TypeScript(2)WebStorm自动编译TypeScript配置