本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
Java容器类List、ArrayList、Vector及map、HashTable、HashMap的区别与用法
版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明http://www.blogbus.com/selives-logs/27714366.html
ArrayList 和Vector是采用数组方式存储数据,此数组元素数大于实际存储的数据以便增加和插入元素,都允许直接序号索引元素,但是插入数据要设计到数组元素移动等内存操作,所以索引数据快插入数据慢,Vector由于使用了sync ...
JSP获取spring 的容器ApplicationContext
Jsp 中如何获取spring的bean呢?
方式一:通过上下文
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pa ...
转 Creating a container element and using it in the step "Mail".
From link.
By Suresh Kumar Parvathaneni
This document details about creation of a container element in workflow and using it in the step "Mail".
Pre-requisites:
It is assumed that the r ...
未完 Java Collections | 容器
Sources:
http://docs.oracle.com/javase/tutorial/collections/TOC.html
数据结构:
http://wuaner.iteye.com/blog/553007
为什么重写equals()必须重写hashcode():
http://wuaner.iteye.com/blog/588299
Java 常用容器类:
Collecti ...
容器学习七:ArrayList源码分析
一.成员变量
// 在AbstractList里面定义的
protected transient int modCount = 0;
// 内部用数组实现
private transient Object[] elementData;
private int size;
二. ...
容器学习六:HashSet & LinkedHashSet & TreeSet源码分析
一.概述
Set是通过Map来支持的,Set接口里的所有方法,都委托给内部的Map去实现。
二.HashSet源码
public class HashSet<E>
extends AbstractSet<E>
implements Set<E>, Cloneable, java.io.Serializable
...
容器学习五:TreeMap源码分析
一.TreeMap成员变量
//Comparator比较器接口,接口里面只有两个方法int compare(T o1, T o2);boolean equals(Object obj);
private final Comparator<? super K> comparator;
//根节点
private transient Entry ...
4.容器类List、ArrayList、Vector及map、HashTable、HashMap分别的区别
Java容器类List、ArrayList、Vector及map、HashTable、HashMap分别的区别
引用ArrayList和HashMap是异步的,Vector和HashTable是同步的,所以Vector和HashTable是线程安全的 ...
从整体解读tomcat
一. tomcat的容器组件
1.Engine,实现类StandardEngine
2.Host,实现类StandardHost
3.Context,实现类StandardContext
4.Wrapper,实现类StandardWrapper
...