摘要: Understanding Rvalue and Lvalue C++ 11 instroduced rvalue reference. Lvalue- an object that occupies some identifiable location in memory. Rvalue- any 阅读全文
posted @ 2020-05-25 08:45 John_K 阅读(363) 评论(0) 推荐(0) 编辑
摘要: Latch应用总结!附Time Borrowing,Lockup,Clock Gating Check概念解析 The following article is from RTL2GDS Author 老本 Benjamin RTL2GDS 数字集成电路设计中从RTL到GDS Tapeout整个过程 阅读全文
posted @ 2020-05-25 03:30 John_K 阅读(2193) 评论(0) 推荐(0) 编辑
摘要: 很多shell 通过grep取出文本, 正则替换再输出。 正确的是sed。 通过s 命令: echo Tom like Jerry. Tom hats Jerry. > kan.txt sed 's/Tom/Kan' < kan.txt Kan like Jerry. Tom hats Jerry. 阅读全文
posted @ 2020-05-19 13:34 John_K 阅读(316) 评论(0) 推荐(0) 编辑
摘要: class Intcell { public: Intcell () {storeValue = 0;} // Int (int initialValue) {storeValue = initialValue;} private: int storeValue ; } Constructor: 分 阅读全文
posted @ 2020-05-17 02:37 John_K 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 一个人越想得到更丰富的物质,就越需要技能,就更需要创新精神和合作精神。有创新精神的人通常有很好的财务和业务技能,有合作精神的人,通常能为自己不断地增加财富。 当你把钱存在银行,活期利率每年1.25%左右,而每年的通货膨胀3.5%左右,实际回报是-2.25%,并且银行的利息收入是100%需要交税的。扣 阅读全文
posted @ 2020-05-16 14:37 John_K 阅读(196) 评论(0) 推荐(0) 编辑
摘要: BRE (基本)正则: . 匹配任何单个字符 + 匹配前面一个或者多个 ? 匹配前面零个或者一个 * 匹配前面任何(或者没有的)单个字符 ab*c 表达匹配ac, abc, abbc, abbbbc ^ 匹配行或者字符串开始处 // ^abc : abc出现在一行的开头 $ 匹配字符串完结处 // 阅读全文
posted @ 2020-05-13 14:51 John_K 阅读(195) 评论(0) 推荐(0) 编辑
摘要: Day1: 基本I/O : printf "aaa\n" echo "aaa" // 带自动换行 管道:(读取txt 的内容, 处理, 输出到sort, 再输出到txt文件) tr [options ] source_char_list replace_char_lst 功能: 转换或者删除字符 - 阅读全文
posted @ 2020-05-12 13:11 John_K 阅读(104) 评论(0) 推荐(0) 编辑