gpt4 book ai didi

java - 由于主方法/java 类文件异常错误,我的程序无法运行

转载 作者:行者123 更新时间:2023-12-01 17:59:34 24 4
gpt4 key购买 nike

我试图找出选择排序算法并通过打印每一行来理解它,但是当我运行它时,控制台甚至不会弹出。我知道我的错误必须与未找到主类异常和主字符串参数方法有关,但我不知道如何修复它以查看输出。

package sort;


public class Sorting {
private int[] a = new int[]{ 11, 9, 17, 5, 12 };



public Sorting(int[]a) {
this.a = a;
}
public static void main(String[] args) {

}
public void sortInSpace(int[]a) {
for(int startOfUnsorted = 0; startOfUnsorted<a.length; startOfUnsorted++) {
int smallestInUnsorted = Integer.MAX_VALUE;
System.out.println(smallestInUnsorted);

}
}
}

最佳答案

排序中的主要函数是空的,因此如果您尝试运行该类,它不会打印任何内容。

public static void main(String[] args) {

}

相反,我会执行以下操作 -

public class Sorting {
private int[] a;

public Sorting(int[]a) {
this.a = a;
}
public void sortInSpace(int[]a) {
for(int startOfUnsorted = 0; startOfUnsorted<a.length; startOfUnsorted++)
{
int smallestInUnsorted = Integer.MAX_VALUE;
System.out.println(smallestInUnsorted);

}
}
}

创建另一个类,它将启动对象类型的排序并使用该对象调用该方法。

public static void main(String [] args)
{
int[] a = new int[]{ 11, 9, 17, 5, 12 };
Sorting sortObj = new Sorting(a);
sortObj.sortInSpace(a);

}

输出 -

2147483647
2147483647
2147483647
2147483647
2147483647

关于java - 由于主方法/java 类文件异常错误,我的程序无法运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60660609/

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