- 浏览: 25677 次
- 性别:
- 来自: 北京
最新评论
-
gisupc:
ArrayList是采用链表存储呢?还是线性存储呢?求指点
ArrayList:插入与删除元素操作 -
wangying641588:
package repeat_practice;
import ...
BufferedReader.readLine() -
Y2N2C2J2:
是李名将吧,容器这块直接查询API就好了!也很方便的!
ArrayList:插入与删除元素操作
文章列表
在FF下,在创建博客文章的BBCode模式下,鼠标移动到“code”这个按钮上的时候,由于
写道
代码: [code="ruby"]...[/code] (支持java, ruby, js, xml, html, php, python, c, c++, c#, sql)
的字体大小设置原因,会撑破布局,导致文本输入框向下移动!非常不爽- -#只好换回IE,或者用FF的IE TAB……
- 2009-05-08 23:49
- 浏览 994
- 评论(0)
BufferedReader bfreader = new BufferedReader(new InputStreamReader(System.in));
String s = null;
do {
System.out.println("please write your note here: (type \"exit\" to exit the program)");
s = bfreader.readLine();
System.out.println(s);
} while (!s.equals("exit&qu ...
- 2009-05-08 23:34
- 浏览 4929
- 评论(1)
List list = new ArrayList(5);
//----添加元素
list.add("hehe");
list.add(0,"heihei"); //在指定的index之前插入元素
list.add(list.size(), "lastElement"); //在最后一个元素之后插入元素
//------删除:找对象;找下标
list.remove("hehe"); //找对象
list.remove(0); //找下标
System.out.println(list);
- 2008-11-30 19:26
- 浏览 17944
- 评论(2)