1、错误描述
freemarker处理哈希表的内建函数
张三强
Expected collection or sequence. maps evaluated instead to freemarker.core.HashLiteral$SequenceHash on line 13, column 17 in map.ftl....
分类:
其他好文 时间:
2014-06-20 12:34:57
阅读次数:
392
Reserved space (invalid address) is protected against abnormal access. Reads from invalid address return garbage; writes to invalid address are blocked. Access to reserved space can generate exception...
分类:
其他好文 时间:
2014-06-20 11:58:31
阅读次数:
260
查询已经创建的数据库 show dbs
选择数据库
use DATABASE_NAME
查询该数据库里面的集合 show collections
删除集合操作:
db.COLLECTION_NAME.drop()
插入数据操作:
db.COLLECTION_NAME.insert(
do...
分类:
数据库 时间:
2014-06-20 10:57:41
阅读次数:
275
Rename a TFS Project CollectionI was asked the
other day how to rename a Team Project Collection.There is a way, and it is more
like a three card shuf...
分类:
其他好文 时间:
2014-06-13 13:39:13
阅读次数:
537
该文所有问题转自:http://www.cnblogs.com/hpboy/p/3307371.html一.算法,数据结构1.排序算法2.查找算法3.二叉树4.广度,深度算法;二.java基础1.集合Collection,List,Map等常用方法,特点,关系;2.线程的同步,中断方式有几种,线程池...
分类:
移动开发 时间:
2014-06-11 23:58:59
阅读次数:
456
Set接口的实现,可以方便地将指定的类型以集合类型保存在一个变量中。Set是一个不包含重复元素的Collection,更确切地讲,Set
不包含满足 e1.equals(e2) 的元素对,并且最多包含一个 null
元素。Set接口的底层存储实现都是依赖Map的实现,也可以说Set中元素的管理就.....
分类:
编程语言 时间:
2014-06-11 10:03:12
阅读次数:
340
写的是一个jstl标签处理器类,可以迭代任意数组 import
java.io.IOException;import java.lang.reflect.Array;import
java.util.ArrayList;import java.util.Collection;import java....
分类:
其他好文 时间:
2014-06-02 20:07:54
阅读次数:
215
最近放假,闲来无事,便翻看以前看过的一些书,竟然发现有些书本(甚至是一些畅销书)对Java中Iterator有很大的误解,比如某畅销书在Collection那一章有这么一句话:“当使用Iterator对集合元素进行迭代时,Iterator并不是把集合元素本身传给了迭代变量,而是把集合元素的值传给了迭代变量,所以修改迭代变量的值对集合元素本身没有任何影响。”但是经过自己实例测试发现根本不是这样!...
分类:
编程语言 时间:
2014-06-02 18:58:10
阅读次数:
316
问题:
Given a collection of numbers, return all possible permutations.
For example,
[1,2,3] have the following permutations:
[1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2],
and [3,2,1].
分析:
...
分类:
其他好文 时间:
2014-06-01 15:04:42
阅读次数:
259
问题:
Given a collection of numbers that might contain duplicates, return all possible unique permutations.
For example,
[1,1,2] have the following unique permutations:
[1,1,2], [1,2,1],
and...
分类:
其他好文 时间:
2014-06-01 13:03:12
阅读次数:
324