Collection |--List:元素是有序的,元素可以重复。因为该集合体系有索引。
|--ArrayList:底层的数据结构使用的是数组结构。特点:查询速度很快。但是增删稍慢。线程不同步。
List集合特有的迭代器。ListIterator是Iterator的子接口。 ...
分类:
其他好文 时间:
2014-05-07 19:35:32
阅读次数:
306
solution1.Tick the primary key 1.right click on
the Id of the entity in dataset schema. 2.Edit Key 3.Tick the Primary Key
分类:
其他好文 时间:
2014-05-07 19:18:56
阅读次数:
362
Select Top在不同数据库中的使用用法:1. Oracle数据库 SELECT * FROM
TABLE1 WHERE ROWNUM<=N2. Infomix数据库 SELECT FIRST N * FROM TABLE13. DB2数据库
SELECT * ROW_NUMBER() OVER...
分类:
数据库 时间:
2014-05-07 19:12:48
阅读次数:
366
Everyone knows thejordan 11 concord 2014release
here we are at new popular and anticipated approaching Jordan 11 low top usually
set to Saturday at 8:...
分类:
其他好文 时间:
2014-05-07 18:46:26
阅读次数:
318
php ZIP压缩类实例分享Zip($zipfiles, $zipfile); //添加文件列表
PHP的ZIP压缩类: GetFileList($dir);} if
((!empty($dir))&&(!is_array($dir))&&(file_exists($dir)))
chdir($d....
分类:
Web程序 时间:
2014-05-07 18:43:40
阅读次数:
556
PHP图片裁剪函数(图像不变形) 1 && $ratio_h > 1))
{if($ratio_w 1) || ($ratio_w >1 && $ratio_h $ratio_w? $ratio_h :
$ratio_w; //取比例大的那个值// 定义一个中间的大图像,该图像的高或宽和目标图像相....
分类:
Web程序 时间:
2014-05-07 18:42:24
阅读次数:
421
http://acm.fzu.edu.cn/problem.php?pid=2171 Problem
2171 防守阵地 II Accept: 73Submit: 256Time Limit: 3000 mSecMemory Limit :...
分类:
其他好文 时间:
2014-05-07 18:41:12
阅读次数:
440
格式如下:#vim file*.txt 或者 #vim file file2
file3查看当前编程的是那个文件,在冒号命令行下:args 命令,类似:file [file2],以中括号里面为当前编辑的文件 ;:next
转到下一个文件可以简写:n ;:prev 转到上一个文件,简写无效;:last...
分类:
其他好文 时间:
2014-05-07 18:39:54
阅读次数:
233
git revert 撤销
某次操作,此次操作之前和之后的commit和history都会保留,并且把这次撤销作为一次最新的提交 * git revert HEAD 撤销前一次
commit * git revert HEAD^ 撤销前前一次 commit * git revert commit (...
分类:
其他好文 时间:
2014-05-07 18:30:02
阅读次数:
584
判断一个变量是否为空 .1. 变量通过" "引号引起来如下所示:,可以得到结果为 IS
NULL. #!/bin/sh para1= if [ ! -n "$para1" ]; then echo "IS NULL" else echo "NOT
NULL" fi2. 直接通过变量判断如下所示:得到...
分类:
其他好文 时间:
2014-05-07 18:21:00
阅读次数:
429