1. Map和HashMap的使用方法2. JDK帮助文档的使用方法1.
Map和HashMap的使用方法 2. JDK帮助文档的使用方法 帮助文档下载chm格式的英文版, 在索引里面搜索map
分类:
其他好文 时间:
2014-06-04 18:57:54
阅读次数:
288
要截获window.close(),就得截获CDHtmlDialog的WindowClosing。以下是示例代码://
headerDECLARE_EVENTSINK_MAP()void WindowClosing(VARIANT_BOOL IsChildWindow,
VARIANT...
1 innodb 自增列出现重复值的问题 先从问题入手,重现下这个buguse test;drop
table t1;create table t1(id int auto_increment, a int, primary key (id))
engine=innodb;insert into t...
分类:
数据库 时间:
2014-06-03 13:24:55
阅读次数:
503
DECLARE @SOInfoList TABLE ( SONumber INT, SODate
datetime, Status char(1) ) INSERT INTO @SOInfoList ( SONumber, SODate, ...
分类:
数据库 时间:
2014-06-03 13:02:04
阅读次数:
295
ProblemYou want to instantiate and display a
map on a viewSolutionCreate an instance of the MKMapView class and add it to a
view or assign it as a sub...
分类:
其他好文 时间:
2014-06-03 12:19:39
阅读次数:
314
System V 共享内存信息结构struct shmid_ds { struct ipc_perm
shm_perm; // operation permission struct size_t shm_segsz; // segment size pid_t
shm_lpid;...
分类:
其他好文 时间:
2014-06-03 11:20:18
阅读次数:
264
java 集合系列目录:Java 集合系列 01 总体框架Java 集合系列 02
Collection架构Java 集合系列 03 ArrayList详细介绍(源码解析)和使用示例Java 集合系列 04
LinkedList详细介绍(源码解析)和使用示例Java 集合系列 05 Vector详细...
分类:
编程语言 时间:
2014-06-03 09:18:16
阅读次数:
403
public class Fibonacci { private static Map map =
new HashMap(); static{ map.put(0L, 1L); map.put(1L, 1L); } public static void
main(String[] arg...
分类:
其他好文 时间:
2014-06-03 07:24:25
阅读次数:
221
Mybatis自动生成代码,需要用到mybatis
Generator,详见http://mybatis.github.io/generator/configreference/generatedKey.htmlinsert语句如果要返回自动生成的key值,一般会在insert里加入useGener...
分类:
其他好文 时间:
2014-05-30 21:44:12
阅读次数:
593
好吧 最近应该剁手了 停不下撸的节奏 我们还是先来看下这题吧 touch me题目大意:
就是给你一串字符串 你要找出其中符合的2个字符构成的字符串str 条件呢是 str[0]是辅音字母 str[1]是元音字母 --
aeiou--而且都是小写的其实 这应该算种方法 当你需要统计...
分类:
其他好文 时间:
2014-05-30 20:31:23
阅读次数:
237