eclipse编写java程序

packagejavaaa.huolili;importjava.util.ArrayList;publicclassArrayList{publicstaticvoid... package javaaa.huolili;

import java.util.ArrayList;

public class ArrayList
{
public static void main(String[] args)
{
ArrayList arrayList = new ArrayList();

arrayList.add("Hello");
arrayList.add("World");
arrayList.add("World");
arrayList.add("Welcome");

String s1 = (String)arrayList.get(0);
String s2 = (String)arrayList.get(1);
String s3 = (String)arrayList.get(2);
String s4 = (String)arrayList.get(3);

System.out.print(s1);
System.out.print(s2);
System.out.print(s3);
System.out.print(s4);

}
}

运行的时候写The method get(int) is undefined for the type ArrayList
The method get(int) is undefined for the type ArrayList
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
The method add(String) is undefined for the type ArrayList
The method add(String) is undefined for the type ArrayList
The method add(String) is undefined for the type ArrayList
The method add(String) is undefined for the type ArrayList
The method get(int) is undefined for the type ArrayList
The method get(int) is undefined for the type ArrayList
The method get(int) is undefined for the type ArrayList
The method get(int) is undefined for the type ArrayList

at javaaa.huolili.ArrayList.main(ArrayList.java:11)
展开
 我来答
千锋教育
2015-12-01 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
展开全部
  1. 打开eclipse新建一个工程

  2. 输入名字,如“例子”

  3. 找到“例子”程序,找到src,点击右键,新建一个java程序

  4. 起个名,如“out”

  5. 然后编写代码

  6. 编写完代码后,点击下图三角图运行该程序

  

舒心还飒爽丶彩旗x
2012-06-09 · TA获得超过1545个赞
知道小有建树答主
回答量:1594
采纳率:75%
帮助的人:747万
展开全部
类名不能用ArrayList。建议楼主先别用eclipse,用文本编辑工具吧。
更多追问追答
追问
用记事本编了好久了  这才改得eclipse
追答
我觉得javaSe的学习部分都应该用文本编辑器。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
黄_森
2012-06-09 · 超过15用户采纳过TA的回答
知道答主
回答量:130
采纳率:0%
帮助的人:53.4万
展开全部
import java.util.ArrayList;

public class text
{
public static void main(String[] args)
{
ArrayList arrayList = new ArrayList();

arrayList.add("Hello");
arrayList.add("World");
arrayList.add("World");
arrayList.add("Welcome");

String s1 = (String)arrayList.get(0);
String s2 = (String)arrayList.get(1);
String s3 = (String)arrayList.get(2);
String s4 = (String)arrayList.get(3);

System.out.print(s1);
System.out.print(s2);
System.out.print(s3);
System.out.print(s4);

}
}
我为什么可以正常编译 结果是HelloWorldWorldWelcome
更多追问追答
追问
可是我的为什么报错啊  说ArrayList没有那个类  是不是我设置有什么问题
追答
你把类名字改一下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
一修哥8011
2012-06-09 · 超过22用户采纳过TA的回答
知道答主
回答量:88
采纳率:0%
帮助的人:56万
展开全部
你这个类的类名有问题,和java自带的类名重复,换个名就可以了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式