3.1基本数据类型 3.1.1整型家族 整型家族包括字符、短整型、整型和长整型,它们都分为有符号(signed)和无符号(unsigned)两种版本。 长整型至少因该和整型一样长,整型至少因该和短整型一样长。 头文件limits.h说明了各种不同整数类型的特点。 字面值(literal)这个术语是字...
分类:
其他好文 时间:
2015-09-28 11:44:56
阅读次数:
154
http://www.geeksforgeeks.org/g-fact-54/Every literal (constant) in C/C++ will have a type information associated with it.In both C and C++, numeric li...
分类:
编程语言 时间:
2015-09-22 18:10:16
阅读次数:
134
有一个经常性的工作项目。需要一天的一些表数据到外部接口,但最近总是异常。今天检查的原因。第一本地和测试环境中测试程序是没有问题,有网络环境只会在日志中抛出一个异常。产生主要的例外是推定异常数据。,由不得而知,于是添加了程序的输出日志和数据打印,通过几次的执行定位了错误发生的函数和数据记录。异常是这种...
分类:
其他好文 时间:
2015-09-17 23:01:44
阅读次数:
246
MacroDescription__DATE__The compilation date of the current source file. The date is a string literal of the formMmm dd yyyy. The month nameMmmis the ...
分类:
编程语言 时间:
2015-09-13 17:16:22
阅读次数:
339
在Python中支持多种的text字符串格式化。包括%方式,str.format()和string.Template.每种方法都有各自的优势,但也有在实际使用时笨重不便之处。本PEP提出一种新的字符串格式化机制: Literal String Interpolati...
分类:
其他好文 时间:
2015-09-07 00:44:30
阅读次数:
171
1:判空 // Bad if (variable.equals("literal")) { ... } // Good if ("literal".equals(variable)) { ... }防止偶发的空指针错误 2:检查NULL和lenght 无论如何,只要你有一个集合、数组等,请确保它存在,并且...
分类:
编程语言 时间:
2015-09-06 11:18:02
阅读次数:
138
Mybatis中如何在SQL语句表名中使用参数 insert into prefix_${table_name} (a, b, c) values (#{a}, #{b}, #{c})${} 表示直接使用字面量(literal value)#{} 表示这个是个参数如果 table_name 是 “A...
分类:
其他好文 时间:
2015-09-05 00:09:09
阅读次数:
225
Problem:Design a data structure that supports the following two operations:void addWord(word)bool search(word)search(word) can search a literal word o...
分类:
其他好文 时间:
2015-08-31 11:27:23
阅读次数:
188
JavaScript中的Objects
在JavaScript中,创建Objects有两种方式,declarative (literal) form和 constructed form。
首先,声明式如下:
var myObj = {
key: value
// ...
};
构造式如下:
var myObj = new Object();
myObj.key =...
分类:
编程语言 时间:
2015-08-30 06:37:25
阅读次数:
154
Design a data structure that supports the following two operations:void addWord(word)bool search(word)search(word) can search a literal word or a regu...
分类:
其他好文 时间:
2015-08-19 00:33:21
阅读次数:
121