自动生成帮助文档工具——Doxygen的使用示例(C++)

摘要: 在项目中用了Doxygen来制作文档,记录备忘。 查了不少文章,主要使用方法及例子参考都是来自以下链接: http://wenku.baidu.com/link?url=jYVQTEY6-aHB4x1KwfdmTJ7o_TkmscOvY44cqFncfobD54hAhDPotXPESJOLL-lJf 阅读全文
posted @ 2015-04-20 19:24 Liz- 阅读(1997) 评论(0) 推荐(0)

《大话数据结构》读书笔记——9.4简单选择排序

摘要: //c 实现 1 #include "stdafx.h" 2 #include "stdlib.h" 3 4 void swap(int& a,int& b) 5 { 6 int t =a; 7 a = b; 8 b = t; 9 }10 int _tmain(int a... 阅读全文
posted @ 2015-04-15 21:34 Liz- 阅读(211) 评论(0) 推荐(0)

《大话数据结构》读书笔记——9.3冒泡排序

摘要: //C 实现 1 #include "stdafx.h" 2 #include "stdlib.h" 3 4 void swap(int* a,int* b) 5 { 6 int t =*a; 7 *a = *b; 8 *b = t; 9 }10 int _tmain(in... 阅读全文
posted @ 2015-04-15 21:31 Liz- 阅读(170) 评论(0) 推荐(0)

《大话数据结构》读书笔记——9.5直接插入排序

摘要: //C 实现 1 #include "stdafx.h" 2 #include "stdlib.h" 3 4 int _tmain(int argc, _TCHAR* argv[]) 5 { 6 int arr[6] ={0,5,3,4,6,2}; 7 int i,j; 8... 阅读全文
posted @ 2015-04-15 21:27 Liz- 阅读(139) 评论(0) 推荐(0)

Windows Form (C#) 进度条处理

摘要: 问题: 后台处理大量数据,要求主界面不卡死,显示进度条,且主程序体在数据处理完毕后继续运行。 1 { 2 //主程序1 3 } 4 //插入代码 5 Thread t1 = new Thread(StartWork); 6 t1.IsBackground = true;... 阅读全文
posted @ 2015-03-29 14:44 Liz- 阅读(1346) 评论(0) 推荐(0)

文件操作c/c++/c#

摘要: 1 c 文件操作 http://www.cnblogs.com/duzouzhe/archive/2009/10/24/1589348.html2 c++文件读写 http://blog.csdn.net/kingstar158/article/details/68593793 c#读写 ht... 阅读全文
posted @ 2015-01-18 10:59 Liz- 阅读(188) 评论(0) 推荐(0)

try{}catch(...){}

摘要: 问题:在项目中调用第三方库时,使用try{}catche(...){}语句,异常无法捕获。解决方案:在项目属性->C/C++->代码生成->启用C++异常是选择第三项:是,但有SEH异常(/EHa),能够捕获异常。(VS2005 SP1)相关知识:1C++及Windows异常处理(try,catch... 阅读全文
posted @ 2015-01-18 10:40 Liz- 阅读(712) 评论(0) 推荐(0)

std::sort()

摘要: 原文地址:http://blog.csdn.net/factor2000/article/details/3936195 1 #include "stdafx.h" 2 #include 3 #include 4 #include 5 #include 6 7 using nam... 阅读全文
posted @ 2014-12-14 10:04 Liz- 阅读(827) 评论(0) 推荐(0)

C#代码访问oracle数据库

摘要: 1引用System.Data.OracleClient路径:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.OracleClient.dll2安装Oracle client1官网下载win32_11gR2_client.zip注意版... 阅读全文
posted @ 2014-12-07 15:53 Liz- 阅读(433) 评论(0) 推荐(0)

ATL创建COM步骤(VS)

摘要: 能够看到类视图中出现了刚刚建立的接口。 阅读全文
posted @ 2014-06-11 19:40 Liz- 阅读(562) 评论(0) 推荐(0)