- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在创建一个实现 GenericList 类的 ListType 类。 findMax、findMin 和 printAll 方法是我添加到 ListType 中的。我相信问题出在我扩展的 Comparable 和 list=(E[])(new Object[cap]) 之间。
import java.util.*;
import java.io.*;
public class ListType<E extends Comparable<E>> implements GeneralList<E>
{
private final int default_cap = 10;
private final int resize_fac = 2;
private E[] list;
private int numElements;
public ListType()
{
list = (E[])(new Object[default_cap]);
numElements = 0;
}
public ListType(int cap)
{
if (cap < 1)
throw new IllegalArgumentException();
list = (E[])(new Object[cap]);
numElements = 0;
}
public void add(E element)
{
if (numElements == list.length)
resize();
list[numElements] = element;
numElements++;
}
public void add(int index, E element)
{
if (index > numElements || index < 0)
throw new IndexOutOfBoundsException();
if (numElements == list.length)
resize();
for (int i = numElements; i > index; i--)
list[i] = list[i - 1];
list[index] = element;
numElements++;
}
public void clear()
{
for (int i = 0; i<list.length; i++)
list[i] = null;
numElements = 0;
}
public boolean contains(E element)
{
int index = 0;
boolean found = false;
while (!found && index < numElements)
{
if (list[index].equals(element))
found = true;
index++;
}
return found;
}
public E get(int index)
{
if (index >= numElements || index < 0)
throw new IndexOutOfBoundsException();
return list[index];
}
public int indexOf(E element)
{
int index = 0;
boolean found = false;
while (!found && index < numElements)
{
if (list[index].equals(element))
found = true;
else
index++;
}
if (!found)
index = -1;
return index;
}
public boolean isEmpty()
{
return (numElements == 0);
}
public boolean remove(E element)
{
int index = 0;
boolean found = false;
while (!found && index < numElements)
{
if (list[index].equals(element))
{
list[index] = null;
found = true;
}
index++;
}
if (found)
{
while(index < numElements)
{
list[index - 1] = list[index];
index++;
}
numElements--;
}
return found;
}
public E remove(int index)
{
if (index >= numElements || index < 0)
throw new IndexOutOfBoundsException();
E temp = list[index];
list[index] = null;
index++;
while(index < numElements)
{
list[index - 1] = list[index];
index++;
}
numElements--;
return temp;
}
private void resize()
{
int newLength = list.length * resize_fac;
E[] tempList = (E[])(new Object[newLength]);
for (int index = 0; index < numElements; index++)
tempList[index] = list[index];
list = tempList;
}
public E set(int index, E element)
{
if (index >= numElements || index < 0)
throw new IndexOutOfBoundsException();
E temp = list[index];
list[index] = element;
return temp;
}
public int size()
{
return numElements;
}
public String[] toStringArray()
{
String[] strArray = new String[numElements];
for (int index = 0; index < numElements; index++)
strArray[index] = list[index].toString();
return strArray;
}
//This method will find the minimum element using the Comparable implemented
public E findMin()
{
E min = list[0];
for(int i=1; i<list.length; i++)
{
if(min.compareTo(list[i]) > 0)
min = list[i];
}
return min;
}
//This method will find the maximium element using the Comparable implemented
public E findMax()
{
E max = list[0];
for(int i=1; i<list.length; i++)
{
if(max.compareTo(list[i]) < 0)
max = list[i];
}
return max;
}
//This method print all the elements in the list simply using the for.
public void printAll()
{
for(int i=0; i<list.length; i++)
System.out.print(list[i] + " ");
}
//This is the main class which executes the program
public static void main(String[] args) throws IOException{
//This will read the elements from the file.
File file = new File("document.txt");
Scanner inputFile = new Scanner(file);
String line1 = inputFile.nextLine();
String[] arrayLine = line1.split(" ");
//This will create the list of the class above.
ListType<Double> numbers = new ListType<Double>();
for(int i=0; i<numbers.size(); i++){
numbers.add(Double.parseDouble(arrayLine[i]));
}
System.out.println("The following elements in the file are: ");
numbers.printAll();
System.out.println(" ");
System.out.println("The minimium element in the file is " + numbers.findMin());
System.out.println(" ");
System.out.println("The maximium element in the file is " + numbers.findMax());
}
}
最佳答案
将 private E[] list;
更改为 private Object[] list;
并删除构造函数中的 (E[])
转换。
无论您在 get 方法中使用 list[index]
,您都需要显式转换实例,如 (E)list[index]
。
关于java - 我不断收到 [Ljava.lang.Object;无法转换为 [Ljava.lang.Comparable 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28892318/
我经常有一个 Comparator 类型,而我需要一个 Comparable 类型,反之亦然。是否有可重用的 JDK API 可以相互转换?类似的东西: public static Comp
我怎么能写这个 Comparator sort = (i1, i2) -> Boolean.compare(i2.isOpen(), i1.isOpen()); 像这样(代码不起作用): Compa
请帮助她。我有一个错误 Collections.sort(var4, new Comparator() { public int compare(TreeMap var1, TreeMa
学习 Kotlin,我试图了解 Java 的 Comparator接口(interface)有效 - 主要是 compare() 函数,这样我就可以利用它。 我已经尝试阅读 compare() 的文档
我有以下程序 List numbers = Arrays.asList("10", "68", "97", "9", "21", "12"); Collections.sort(numbers, (
我想根据嵌套类的属性对如下所示的列表进行排序。 class Test { private NestedClass nestedClass; private AnotherNes
我很好奇“Beyond Compare”的算法是如何工作的? 我猜想他们使用了一种标准的(众所周知的?)算法来实现“字符与字符”的比较。你知道这个算法的名字吗?谢谢 最佳答案 Beyond Compa
这个问题已经有答案了: How does the sort() method of the Collection class call the Comparable's compareTo()? (1
这个问题已经有答案了: 已关闭12 年前。 Possible Duplicates: difference between compare() and compareTo() Java: What i
我被要求为某个类实现Comparable或Compartor,我们称之为V。 假设我有一个 V 的 Collection 或 Set(还不确定,但我认为这并不重要)。 V 有一个方法,可以评估它的“权
我正在查看Java8中实现的Comparator.comparing方法的源代码 这是代码 public static Comparator comparing( Function
假设我有一个类 ClassA,它的属性是 ClassB: public ClassA { private String attr; private ClassB classB; } p
我有一个自定义比较器,其比较逻辑如下: List l = new ArrayList(); l.add("tendercoupon"); l.add("giftcard
我正在努力实现一个处理 Comparator 和 Comparable 接口(interface)的层次结构。我不清楚的几件事: 如果我将比较器添加到比较器链中,这段代码究竟意味着什么 chain.a
正在关注 this question关于按另一个列表对列表进行排序,我尝试做同样的事情 - 但由于某种原因它对我不起作用。我错过了什么? List nums = Arrays.asList(5
假设我有一个像这样的领域模型: class Lecture { Course course; ... // getters } class Course { Teache
在表达式 > 中像这样的签名 public static > foo(T x) { ... } T的描述递归地依赖于Comparable . 如果T延伸Comparable ,和Comparable延
所有“数字”比较器(例如 Comparer.Default 、 Comparer.Default 等)返回 -1 的原因是什么? , 0或 1 ,但是 Comparer.Default和 Compar
(如果这是重复的,请指出正确的答案!我搜索并阅读了几个(> 5)个相关问题,但似乎没有一个是正确的。还查看了泛型常见问题解答和其他来源...) 当一个集合类接受一个比较器时,它应该具有 Compara
SBCL 1.3.1 综上所述,a是一个列表,'(7),b通过setq sbcl This is SBCL 1.3.1.debian, an implementation of ANSI Common
我是一名优秀的程序员,十分优秀!