10 2020 档案

摘要:##1. StudenDaoListImpl.java与StudentDaoArrayImpl.java有何不同? • StudenDaoListImpl.java使用链表来实现学生管理系统;StudentDaoArrayImpl.java使用数组来实现学生管理系统。在查找的过程中,因为 Stude 阅读全文
posted @ 2020-10-25 19:10 Vancciiii 阅读(124) 评论(0) 推荐(0)
摘要:##1.有理数类的代码 package pta; public class Rational { private int numerator; // 分子 private int denominator; // 分母 public Rational(int n, int d) { this.nume 阅读全文
posted @ 2020-10-04 10:45 Vancciiii 阅读(148) 评论(0) 推荐(0)