我正在尝试创建自己的Bucket Sort样式,我的代码出错了,我不知道如何修复它。任何帮助都会很棒。我有两个类,Node和BucketSort:
public class Node {
protected int element;
protected Node next;
public Node()
{
element = 0;
next = null;
}
public Node getNext(Node n)
{
return next;
}
public void setNext(Node n)
{
n = next;
}
public void setElement(int e)
{
e = element;
}
public int getElement()
{
return element;
}
}
和
public class BucketSort extends Node{
public static void bucketSort(int v, int[] b) //b = the array of integers and v = number of buckets wanted.
{
Node[] bucket = new Node[v]; //Creating an array of type Node called bucket with v buckets.
for (int i=0; i<=b.length; i++){
bucket[i].setElement(b[i]); //Loop through array of integers b, and set each element to the corresponding index of array bucket.
return;
}
for (int i=0; i<=bucket.length; i++){
//Getting the element at the indexed Node of array "bucket" and assigning it to the array "b" at location element-1. For example if the element is 3, then 3 is assigned to index 2, since it is the 3rd spot.
b[getElement()-1] = bucket[i].getElement();
return;
}
System.out.println(b);
}
}
我在BucketSort第16行收到以下错误,代码为:b [getElement() - 1]
错误是:
无法从类型Node中对非静态方法getElement()进行静态引用。
你能告诉我如何解决这个问题。
谢谢
我该如何测试这个程序?
答案 0 :(得分:3)
问题是您滥用static
关键字。我不确定你是否熟悉Java中静态方法的语义(如果你不熟悉,你应该阅读一些全面的内容,也许是starting here),但基本的想法是一个方法或者声明为static
的字段属于类,而不属于该类的任何特定实例(对象)。特别是,static
方法没有任何this
指针的概念。
所以问题是当你的代码自己调用getElement()
时,Java会隐含地将其解释为this.getElement()
。但是,bucketSort()
是static
而getElement()
属于Node
的实例,所以这没有任何意义 - 究竟是getElement()
被调用的是什么上?
在特定的Node
对象上调用它,例如bucket[i]
,它会编译(虽然它没有真正发挥作用)。
答案 1 :(得分:0)
查看错误。它告诉你你做错了。
您可以为特定对象调用getElement()
。
为什么bucketSort(int v, int[] b)
需要是静态的?有什么理由吗?