gpt4 book ai didi

java - 对 Java 中对象和属性的基本误解

转载 作者:行者123 更新时间:2023-12-02 02:53:19 26 4
gpt4 key购买 nike

我正在做一份大学作业,我担心我还没有真正理解 Java 或 OOP 概念中的一些基本知识。我会尝试使其尽可能短(也许只看第三个代码段就足够了,但我只是想确保我包含了足够的细节)。我要写一点员工管理。该项目中的一个类是employeeManagement 本身,该类应该拥有一种通过冒泡排序按首字母对员工进行排序的方法。

我为此编写了3个类:第一个是“Employee”,其中包含一个名称和一个ID(一个流水号)、getter和setter方法以及一个用于检查某个员工的第一个字母是否较小的方法(字母表中较低的)比另一个。它看起来像这样:

static boolean isSmaller(Employee source, Employee target) {
char[] sourceArray = new char[source.name.length()];
char[] targetArray = new char[target.name.length()];

sourceArray = source.name.toCharArray();
targetArray = target.name.toCharArray();

if(sourceArray[0] < targetArray[0])
return true;
else
return false;
}

我测试了它,它似乎适合我的情况。现在还有另一个名为 EmployeeList 的类,它通过员工数组(“Employee”对象)管理员工。该数组的大小是通过构造函数确定的。我的代码如下所示:

public class EmployeeList {
/*attributes*/
private int size;
private Employee[] employeeArray;

/* constructor */
public EmployeeList(int size) {
this.employeeArray = new Employee[size];
}
/* methods */
public int getSize() {
return size;
}

public void setSize(int size) {
this.size = size;
}
/* adds employee to end of the list. Returns false, if list is too small */
boolean add(Employee m) {
int id = m.getID();
if (id > employeeArray.length) {
return false;
} else {
employeeArray[id] = m;
return true;
}

}
/* returns employee at certain position */
Employee get(int index) {
return employeeArray[index];
}
/* Sets employee at certain position. Returns null, if position doesn't exist. Else returns old value. */
Employee set(int index, Employee m) {
if (employeeArray[index] == null) {
return null;
} else {
Employee before = employeeArray[index];
employeeArray[index] = m;
return before;
}
}

现在我真正的问题来了:在名为“employeeManagement”的第三个类中,我应该实现排序算法。该类如下所示:

public class EmployeeManagement {
private EmployeeList ml = new EmployeeList(3);

public boolean addEmployee(Employee e) {
return ml.add(e);
}

public void sortEmployee() {
System.out.println(ml.getSize()); // I wrote this for debugging, exactly here lies my problem
for (int n = ml.getSize(); n > 1; n--) {
for (int i = 0; i < n - 1; i++) {
if (Employee.isSmaller(ml.get(i), ml.get(i + 1)) == false) {
Employee old = ml.set(i, ml.get(i + 1));
ml.set(i+1, old);
}
}
}
}

我的评论之前的“println”在控制台中返回“0”...我期待“3”,因为这是我在“EmployeeManagement”类中将“EmployeeList”作为构造函数参数提供的大小。我的错误在哪里?如何访问我在“EmployeeManagement”类中创建的对象的大小(“3”)?我真的很期待您的答复!

谢谢,腓尼基斯

最佳答案

没有在构造函数中存储大小。比如,

public EmployeeList(int size) {
this.employeeArray = new Employee[size];
this.size = size; // <-- add this.
}

此外,setSize 不会自动复制(和增长)数组。您将需要复制该数组,因为 Java 数组具有固定长度。最后,这里实际上并不需要 size,因为 employeeArray 有一个 length

关于java - 对 Java 中对象和属性的基本误解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43459911/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com