上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 53 下一页
摘要: http://bbs.csdn.net/topics/392183557 阅读全文
posted @ 2017-08-09 18:37 cogitoergosum 阅读(1390) 评论(0) 推荐(0) 编辑
摘要: 通过find 正则搜索文件 find . -regex '.*\.c\|.*\.h' 每个文件的行数 find . -regex '.*\.c\|.*\.h' | xargs wc -l 显示文件的总行数 find . -regex '.*\.c\|.*\.h' | xargs wc -l | ta 阅读全文
posted @ 2017-08-09 09:48 cogitoergosum 阅读(989) 评论(0) 推荐(0) 编辑
摘要: json靠双引号与单引号, 区分是NUMBER 还是 STRING 阅读全文
posted @ 2017-08-04 17:47 cogitoergosum 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1、 共享内存是在shmget时创建出来的, 在 shmget(USER_SHARE_MEM_KEY, sizeof(ADDR_NODE) , IPC_CREAT|0666)) 1) 的 sizeof() 时创建出来的, 共享内存的结构体不能存在指针之类的内容。 2、 共享内存里不能存在堆 3、正常 阅读全文
posted @ 2017-08-04 17:06 cogitoergosum 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 文章链接: http://blog.chinaunix.net/uid-21457204-id-3063180.html 阅读全文
posted @ 2017-08-04 11:39 cogitoergosum 阅读(528) 评论(0) 推荐(0) 编辑
摘要: sqlite replace into 文档详细说明: http://blog.sina.com.cn/s/blog_590be5290102vulh.html 这点很重要: 一般用replace语句替换一条记录的所有列, 如果在replace语句中没有指定某列, 在replace之后这列的值被置空 阅读全文
posted @ 2017-08-03 14:15 cogitoergosum 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 编译过程的5个阶段:词法分析;语法分析;语义分析与中间代码产生;优化;目标代码生成 编译器 与 解释器的区别: 参考链接: http://www.cnblogs.com/sword03/archive/2010/06/27/1766147.html 解析器: 包括词法、语法的解析器。被包含于编译器 阅读全文
posted @ 2017-07-18 09:33 cogitoergosum 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 参考链接: https://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/0013868328689835ecd883d910145dfa8227b539725e5ed000 协程(corout 阅读全文
posted @ 2017-07-18 09:29 cogitoergosum 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 参考网址: http://zhangxu1018.blog.sohu.com/161752060.html modbus 的crc检验是通过 CRC-16 检验的方式 阅读全文
posted @ 2017-07-14 14:08 cogitoergosum 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 1、字符串连接 local tmp = "abc" local tmp1 = "ddd" tmp..tmp1 2、 table 类型 就是关联数组 local table = {} table["abc"] = "" 初始化 local table = {0x7E, 0x01, 0x05} loca 阅读全文
posted @ 2017-07-12 17:57 cogitoergosum 阅读(1149) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 53 下一页