gpt4 book ai didi

java - java中如何交换两个数组对象

转载 作者:行者123 更新时间:2023-11-30 07:44:22 26 4
gpt4 key购买 nike

我正在尝试对类(class)进行排序并按类(class)编号进行组织。我创建了一个对象数组,其中包含 3 个属性(department、num、title)。我想使用选择排序方法按“num”对该数组进行排序。当我尝试交换两个数组时,编译器说 int 无法转换为 Course[]。

public static void sortByNumber(Course[] arr){

int size = arr.length;
for (int i = 0; i < size - 1; i++) {
int min = i;
for (int j = i + 1; j < size; j++) {
if (arr[j].getNum() < arr[min].getNum()) {
min = j;
}
}
int temp = arr[i];
arr[i] = arr[min];
arr[min] = temp;
}
}

这是我的另一个类。

public class Course {

//INSTANCE VARIABLES
private String dept = "";
private int num = 0;
private String title = "";

//CONSTRUCTORS
public Course(String dept, int num) {
this.dept = dept;
this.num = num;
}

public Course(String dept, int num, String title) {
this.dept = dept;
this.num = num;
this.title = title;
}

public Course() {
this.dept = "AAA";
this.num = 100;
this.title = "A course";
}

//SETTER AND GETTER METHODS
public void setDept(String dept) {
this.dept = dept;
}

public void setNum(int num) {
this.num = num;
}

public void setTitle(String title) {
this.title = title;
}

public String getDept() {
return this.dept;
}

public int getNum() {
return this.num;
}

public String getTitle() {
return this.title;
}

}

最佳答案

int temp = arr[i];

arr[i]Coursetempint。您不能将 Course 分配给 int 变量,也不能将 int 分配给 Course 变量,因为它们是两种完全不同的类型。

将您的临时设为类(class):

Course temp = arr[i];

关于java - java中如何交换两个数组对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34126200/

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