The first motivation for constseems to have
been to eliminate the use of preprocessor #definefor value substitution. It has
since been put to use for ...
分类:
编程语言 时间:
2014-05-08 13:14:07
阅读次数:
496
CH1-3:处理数据 1 列表初始化 char c={31325};不允许缩窄 char
c={66}; char c={x};不能为变量 2 强制类型转换 (typename) value typename (value) static_cast
(value) 更加严格 CH4:复合类型 1 s...
分类:
编程语言 时间:
2014-05-08 11:56:13
阅读次数:
377
一、Combiner作用1、combiner最基本是实现本地key的聚合,对map输出的key排序,value进行迭代。如下所示:map: (K1, V1) →
list(K2, V2)combine: (K2, list(V2)) → list(K2, V2)reduce: (K2, list(V...
分类:
其他好文 时间:
2014-05-08 09:37:49
阅读次数:
472
cookie存在于客户端,session存在于服务器端。
session:session即一次会话。比如,用户登录站点,浏览了几个页面。然后退出登录了。这就是一次会话。有些站点会在页面上显示:你已登录××分钟。就是用了session。怎么来实现session呢。每个session都会有一个sessi...
分类:
其他好文 时间:
2014-05-08 09:24:41
阅读次数:
370
热身运动:1. 启动MongoDB shell => mongo.exe or
./mongo(先确保有一个mongod的实例):2. 切换到一个用于练手的namespace => use
xxxxxxx:增:db.[table].insert({[field]: [value]})查:db.[ta...
分类:
数据库 时间:
2014-05-08 07:59:42
阅读次数:
435
Given a sorted array and a target value, return
the index if the target is found. If not, return the index where it would be if
it were inserted in or...
分类:
其他好文 时间:
2014-05-08 07:29:02
阅读次数:
285
每次操作select都要查资料,干脆总结一下。为select设置placeholder为Select添加事件,当选择其中一项时触发$("#select_id").change(function(){
//code...});jQuery获取Select选择的Text和Value:var che...
分类:
Web程序 时间:
2014-05-08 05:48:25
阅读次数:
509
抠细节的题目,很多次过,特别是 Integer.MIN_VALUE 与
Integer.MAX_VALUE的绝对值并不一样大 1 public class Solution { 2 public int atoi(String
str) { 3 int result=0; 4...
分类:
其他好文 时间:
2014-05-08 05:44:17
阅读次数:
343
public class Tree { TreeNode last = null; TreeNode
root = null; public Tree(int value){ root = createNode(value); } ...
分类:
其他好文 时间:
2014-05-08 01:04:08
阅读次数:
349
详情请参考官网:http://www.erlang.org/doc/reference_manual/records.htmlhttp://www.erlang.org/doc/programming_examples/records.html1.
record本质上是tuple.2.获取recor...
分类:
其他好文 时间:
2014-05-07 21:17:40
阅读次数:
362