SWDevelop
文章平均质量分 71
dadaism_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mock测试
在面向对象程序设计中,模拟对象(英语:mock object,也译作模仿对象)是以可控的方式模拟真实对象行为的假的对象。程序员通常创造模拟对象来测试其他对象的行为,很类似汽车设计者使用碰撞测试假人来模拟车辆碰撞中人的动态行为。http://zh.wikipedia.org/wiki/%E6%A8%A1%E6%8B%9F%E5%AF%B9%E8%B1%A1 mock测试就是在测试过原创 2014-01-23 16:14:42 · 946 阅读 · 0 评论 -
GDB note
gdb foo gdb foo core gdb foo pid set args -- for foo with parameters原创 2014-01-24 21:24:54 · 418 阅读 · 0 评论 -
小试牛刀
一些常用的数据结构和算法,随附的参考文章写的都不错,值得反复研究。 虽然实际项目中时有应用,但有时间还是要分别实现一下,无论对于夯实基础,还是灵活应用都有好处。 · Top K http://blog.youkuaiyun.com/v_JULY_v/article/details/6403777 http://blog.youkuaiyun.com/v_july_v/article/details/6原创 2014-02-04 22:18:47 · 621 阅读 · 0 评论 -
string类构造函数、拷贝构造函数、赋值函数、析构函数
#ifndef DDSTRING_H#define DDSTRING_Hclass ddString {public: ddString(const char *pStrAddr = 0); ddString(const ddString &otherStr); ddString &operator=(const ddString &otherStr); unsigned int size() c原创 2014-02-05 20:52:22 · 569 阅读 · 0 评论 -
github note - Linux
1. git installation sudo apt-get install git guide of git http://rogerdudler.github.io/git-guide/index.zh.html 2. ssh keys in github https://help.github.com/articles/generating-ssh-ke原创 2014-01-15 09:37:28 · 460 阅读 · 0 评论 -
About Heartbleed
Two articles for heartbleed bu http://gizmodo.com/how-heartbleed-works-the-code-behind-the-internets-se-1561341209 http://blog.existentialize.com/diagnosis-of-the-openssl-heartbleed-bug.html翻译 2014-04-14 10:34:46 · 651 阅读 · 0 评论
分享