在工作中经常碰到带有使用可变参数的函数目前C提供的可变参数的申明为 void function(const char *format, ...);这样就可以在function中使用可变参数C提供了几个宏用于使用可变参数 va_list va_start va_arg va_end其中va_...
分类:
其他好文 时间:
2015-06-24 10:34:19
阅读次数:
124
A - Power of Cryptography uva113Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu
Submit Status Practice UVA 113
Appoint description:
Background
Current work in cryptography i...
分类:
其他好文 时间:
2015-06-23 17:59:06
阅读次数:
109
把最近用到的各种unicode下类型转换总结了一下,今后遇到其他的再补充:1、string转CStringstring a=”abc”;CString str=CString(a.c_str());或str.format("%s",a.c_str())2、int转CStringInt a;CStri...
分类:
其他好文 时间:
2015-06-23 15:24:43
阅读次数:
102
function(value, rowData, rowIndex){return 'rowData.name +value';}formatter:function(value, rowData, rowIndex){return ''+rowData.name +value+'';}format...
分类:
其他好文 时间:
2015-06-23 14:57:55
阅读次数:
152
保险公司有一个表记录客户的信息,其中包括有客户的id,name和age(为了演示只列出这几个字段)。
创建Hive的表:
create table customer
(
id int,
age tinyint,
name string
)
partitioned by(dt string)
row format delimited
fields terminated by '|...
分类:
其他好文 时间:
2015-06-23 00:59:38
阅读次数:
175
ELF 文件可以包含很多 section,所有的 section 都在 section header table 中有对应的一项,每个 section header 都是一个 Elf32_Shdr 结构,用于描述相应 section 的信息。ELF Header 中的 e_shoff 给出了 sec...
分类:
其他好文 时间:
2015-06-22 20:39:39
阅读次数:
175
MySQL中有一个像PHP的date函数一样的日期格式化函数DATE_FORMAT,使用这个函数时,需要像下面例子这样传递一个格式字符串和时间戳SELECT DATE_FORMAT(NOW(),"%W %M %D,%Y");附:获取服务器本地时区的当前时间可以NOW或者CURRENT_TIMESTA...
分类:
数据库 时间:
2015-06-22 16:09:28
阅读次数:
147
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.
If the fractional part is repeating, enclose the repeating part in parentheses.
...
分类:
其他好文 时间:
2015-06-22 15:03:43
阅读次数:
181
Calculate a + b and output the sum in standard format — that is, the digits must be separated into groups of three by commas (unless there are less than four digits).
Input
Each input file contain...
分类:
其他好文 时间:
2015-06-22 11:13:26
阅读次数:
110
public static void main(String[] args) { String pattern = "yyyy-MM-dd HH:mm:ss"; SimpleDateFormat format = new SimpleDateFormat(pattern); String cu...
分类:
编程语言 时间:
2015-06-22 06:21:31
阅读次数:
177