会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
qinfengxiaoyue
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
13
下一页
2014年8月12日
Django 和 struts 对比
摘要: 转自:http://www.blogjava.net/shaofan/archive/2007/04/06/109007.html假设:用两者写一个最小的WEB程序。过程可以参照:1.struts的就太多了,随便哪个都可以2.python/django可以看limodou写的Django step ...
阅读全文
posted @ 2014-08-12 11:33 qinfengxiaoyue
阅读(695)
评论(0)
推荐(0)
编辑
2014年7月14日
django模板报错:Requested setting TEMPLATE_DEBUG, but settings are not configured. You must either define
摘要: 转自:http://blog.csdn.net/xiaowanggedege/article/details/8651236 django模板报错: Requested setting TEMPLATE_DEBUG, but settings are not configured. You must either define the environment varia...
阅读全文
posted @ 2014-07-14 13:02 qinfengxiaoyue
阅读(5120)
评论(0)
推荐(0)
编辑
2014年7月10日
使用C++11新特性来实现RAII进行资源管理
摘要: 方法一:借助auto、decltype、unique_ptr、Lambda表达式构造 sqlite3 *db = NULL; auto deleter = [](sqlite3 *pdb){sqlite3_close(pdb);} int nRet = sqlite3_open16(L"F:\\my.db",&db); std::unique_ptr pdb(db,d...
阅读全文
posted @ 2014-07-10 11:15 qinfengxiaoyue
阅读(511)
评论(0)
推荐(0)
编辑
2014年5月14日
C++:关于委托类
摘要: 转自:http://blog.csdn.net/dadalan/article/details/4041931。vs2010已经支持function/bind,能很好实现委托。[说明] 本文不仅介绍了C++语言应用非常好的一种方法(我甚至觉得应该将它归结为一种设计模式),而且也是对C#语言中委托特性...
阅读全文
posted @ 2014-05-14 20:59 qinfengxiaoyue
阅读(1115)
评论(0)
推荐(0)
编辑
性能:验证数字签名导致卡死
摘要: 转自:http://blogs.msdn.com/b/dsvc/archive/2008/06/24/troubleshooting-startup-issues-with-managed-application-having-authenticode-signature.aspxAuthentic...
阅读全文
posted @ 2014-05-14 11:12 qinfengxiaoyue
阅读(2802)
评论(0)
推荐(0)
编辑
2014年5月7日
C++异常安全
摘要: 转自:http://www.cnblogs.com/zgfLawliet/p/3417308.html 异常安全的代码是指,满足两个条件 1异常中立性 : 是指当你的代码(包括你调用的代码)引发异常时,这个异常 能保持原样传递到外层调用代码 2.异常安全性: 抛出异常后,资源不泄露, 抛出异常后,不会使原有数据恶化(例如正常指针变野指针) 少些try catch...
阅读全文
posted @ 2014-05-07 14:39 qinfengxiaoyue
阅读(3088)
评论(0)
推荐(1)
编辑
C++ 11: function & bind 使用示例
摘要: #include #include struct Foo { Foo(int num) : num_(num) {} void print_add(int i) const { std::cout f_display = print_num; f_display(-9); // store a lambda std::function f_display_42 ...
阅读全文
posted @ 2014-05-07 11:16 qinfengxiaoyue
阅读(3047)
评论(0)
推荐(0)
编辑
2014年5月6日
Windows IO 性能简单测试
摘要: 转自:http://bbs.csdn.net/topics/360111289, 有改动。 #include #include #include #include#pragma comment(lib,"ws2_32.lib")ULONGLONG g_nReadCounts=0,g_nWriteCounts=0,g_nOtherCounts=0,g_nReadsBytes=0,g_nWriteB...
阅读全文
posted @ 2014-05-06 19:13 qinfengxiaoyue
阅读(2711)
评论(0)
推荐(0)
编辑
2014年4月16日
使用C++11实现完美资源管理
摘要: 1.资源管理包括内存管理、文件句柄等等需要进行打开(申请)、关闭(释放)操作的过程 2.VS2010使用的C++规范,严格说来不是C++11,而是C++0x,但是一脉相承的 一:管理数组 相较于auto_ptr,unique_ptr的增强点之一是支持对数组对象指针的管理,比如: struct A { int m_data; A(int n=0){...
阅读全文
posted @ 2014-04-16 21:23 qinfengxiaoyue
阅读(1216)
评论(0)
推荐(0)
编辑
SQLite入门(二)读写二进制数据
摘要: //读二进制数据的函数 BOOL OpenBinDataFile(BYTE **pBUf,UINT &len) { if (pBUf == NULL) { return FALSE; } std::ifstream fs; fs.open(g_szBinDataPath,io...
阅读全文
posted @ 2014-04-16 19:58 qinfengxiaoyue
阅读(4099)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
···
13
下一页