问题描述
我正在写一个Java类,我不停的按一个错误。
I'm writing a java class and I keep hitting an error.
Paragraph.java:21:错误:无法找到
的ArrayList阵列符号;
^
符号:类的ArrayList
位置:类段落
Paragraph.java:32:错误:无法找到符号
阵列=新的ArrayList();
................... ^
符号:类的ArrayList
位置:类段落
Paragraph.java:32: error: cannot find symbol
array = new ArrayList();
...................^
symbol: class ArrayList
location: class Paragraph
我导入Java类阵列在我的程序的顶端,它看起来是这样的。
I imported the java class arrays at the very top of my program and it looks like this.
import java.util.Arrays;
我在遇到错误code的确切部分是...
The exact part of code I'm having errors with is...
private ArrayList<String> array;
public Paragraph()
{
array = new ArrayList<String>();
}
这是一个任务的一部分是我必须使用ArrayList
This is part of an assignment were I have to use ArrayList.
推荐答案
您应导入的java.util.ArrayList
,而不是 java.util中。阵列
。 阵列
似乎并不在你的程序中使用,这些是两个完全不同的类。
You should import java.util.ArrayList
, not java.util.Arrays
. Arrays
doesn't seem to be used in your program and these are two completely different classes.
这篇关于在ArrayList中找不到符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!