摘要: 对于64为系统: typedef signed char int8_t; typedef short int int16_t; typedef int int32_t; # if __WORDSIZE==64 typedef long int int64_t; #else typedef long 阅读全文
posted @ 2017-10-02 21:24 hahahaf 阅读(2447) 评论(0) 推荐(1) 编辑
摘要: 正则表达式: ^ : 字符串的开始, $: 字符串的末尾 . : 匹配任意字符,除换行符 * : 任意多的字符 +: 任意大于1 的字符 ?: 匹配0或1个, home-?brew : homebrew, 或home-brew []: 指定一个字符类别,可以单独列出,也可以使用- 表示一个区间。[a 阅读全文
posted @ 2017-10-02 16:59 hahahaf 阅读(386) 评论(0) 推荐(0) 编辑