上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 53 下一页
摘要: 支持http basic认证: 去除http报头 完整案例: file_get_contents进行http basic认证 阅读全文
posted @ 2016-08-24 12:19 cogitoergosum 阅读(1762) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://blog.csdn.net/violetjack0808/article/details/51451672 阅读全文
posted @ 2016-08-18 09:51 cogitoergosum 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://blog.csdn.net/violetjack0808/article/details/52221343 1、文本和文本框 2、Radio和CheckBox 后续待添加以及改进,Jquery使用不熟悉。 阅读全文
posted @ 2016-08-18 09:30 cogitoergosum 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1、进程、线程只针对的是应用层,而内核调用、驱动没有这种概念,调用的都是内核调用里相同的函数或变量,所以应用层多个应用操作同个硬件时,特别是要加互斥操作,8250通过cs针脚决定发送数据给哪个串口 2、发送、接收的解决并发操作,主要防止重复调用该函数,等待函数的硬件还没操作完才允许再调用, 接收一般 阅读全文
posted @ 2016-08-07 23:23 cogitoergosum 阅读(298) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_78d30f6b0102uyaf.html http://blog.csdn.net/lyc_stronger/article/details/52056813 linux 内核数据结构: 队列、链表、映射、二叉树 阅读全文
posted @ 2016-07-29 13:50 cogitoergosum 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 去除换行符操作: 阅读全文
posted @ 2016-07-27 11:20 cogitoergosum 阅读(695) 评论(0) 推荐(0) 编辑
摘要: Makefile常用理解: 参数: makefile里用${temp} 定义的变量: $(temp) 传递的操作。 例如: make clean。 其中clean是伪字符. makefile里的使用:clean: 阅读全文
posted @ 2016-07-25 23:15 cogitoergosum 阅读(8568) 评论(0) 推荐(0) 编辑
摘要: http://get.ftqq.com/992.get 阅读全文
posted @ 2016-07-23 23:24 cogitoergosum 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1、在其中一个类定义友元函数,则可以实现该类直接使用另外类的里所有内容。 一般实例化两个类,友元类以及自身类,实现友元类传递指针到自身类 2、如果两个类是可以继承的关系,则在子类里继承该类,实现在子类调用基类的私有成员函数或成员变量。 实例化子类,不能调用基类的私有内容。 这种方式是实现了子类可提供 阅读全文
posted @ 2016-07-22 22:21 cogitoergosum 阅读(1387) 评论(0) 推荐(0) 编辑
摘要: C语言以sscanf逗号作为分割符 以strtok作为分割符 C++ 逗号分割符 vector<string> split(string str, string pattern){ string::size_type pos; vector<string> result; str+=pattern; 阅读全文
posted @ 2016-07-11 11:33 cogitoergosum 阅读(240) 评论(0) 推荐(0) 编辑
上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 53 下一页