我看每个对象都要写一遍输出代码很麻烦,有没有一种方法可以只要写一遍,再从各个对象调用数据就好的方法。
3条回答 默认 最新
- Tomshidi 2022-03-30 21:32关注
使用设计模式应该能让代码看起来更优雅,但是你不一定能理解。所以暂且就写成下面这样吧。
public abstract class Student { protected int xh; protected String xm; protected char xb; protected double sg; public void information() { System.out.println("学号:" + xh); System.out.println("姓名:" + xm); System.out.println("性别:" + xb); System.out.println("身高:" + sg); System.out.println("--------------------"); } }
public class ZhangSan extends Student { public ZhangSan() { this.xh = 110; this.xm = "张三"; this.xb = '男'; this.sg = 1.85; } }
public class LiSi extends Student { public LiSi() { this.xh = 120; this.xm = "李四"; this.xb = '女'; this.sg = 1.65; } }
public class StartMain { public static void main(String[] args) { new ZhangSan().information(); new LiSi().information(); }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报 编辑记录
悬赏问题
- ¥20 西南科技大学数字信号处理
- ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
- ¥30 STM32 INMP441无法读取数据
- ¥15 R语言绘制密度图,一个密度曲线内fill不同颜色如何实现
- ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
- ¥15 用visualstudio2022创建vue项目后无法启动
- ¥15 x趋于0时tanx-sinx极限可以拆开算吗
- ¥15 pyqt信号槽连接写法
- ¥500 把面具戴到人脸上,请大家贡献智慧,别用大模型回答,大模型的答案没啥用
- ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。