Angelo Lee's Blog
This is my kingdom .If i don't fight for it ,who will ?
上一页 1 2 3 4 5 6 7 8 ··· 55 下一页
摘要: Ant 开发Ant的构建文件当开始一个新的项目时,首先应该编写Ant构建文件。构建文件定义了构建过程,并被团队开发中每个人使用。Ant构建文件默认命名为build.xml,也可以取其他的名字。只不过在运行的时候把这个命名当作参数传给Ant。构建文件可以放在任何的位置。一般做法是放在项目顶层目录中,这样可以保持项目的简洁和清晰。下面是一个典型的项目层次结构。(1) src存放文件。(2) class... 阅读全文
posted @ 2013-03-07 22:18 Angelo Lee 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1.Introduction Official Website:http://ant.apache.org/ Apache Ant is a Java library and command-line tool that help building software. Apache Ant是一个基于Java的构建(Build)工具。类似Unix/Linux C程序员经常使用的Make工具。与Ma... 阅读全文
posted @ 2013-03-07 22:13 Angelo Lee 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 1.Download and Install msysgit. Official Website:http://msysgit.github.com/ 2.Download and Install TortoiseGit Official Website:https://code.google.com/p/tortoisegit/downloads/list 3.Install Git plu... 阅读全文
posted @ 2013-03-06 22:23 Angelo Lee 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 1.Introduction Official Website: PMD scans Java source code and looks for potential problems like: Possible bugs - empty try/catch/finally/switch statements Dead code - unused local variables, param... 阅读全文
posted @ 2013-02-25 18:41 Angelo Lee 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1.Introduction FindBugs Official Website:http://findbugs.sourceforge.net/ FindBugs is a defect detection tool for Java that uses static analysis to look for more than 200 bug patterns. FindBugs 是一个jav... 阅读全文
posted @ 2013-02-22 00:08 Angelo Lee 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 1.Introduction CheckStyle Official Website:http://checkstyle.sourceforge.net/ Eclipse Plugin for CheckStyle:http://eclipse-cs.sourceforge.net/ 2.Download and Install CheckStyle CheckStyle检验的主要内容 Che... 阅读全文
posted @ 2013-02-21 19:24 Angelo Lee 阅读(354) 评论(0) 推荐(0) 编辑
摘要: DLLs in Visual C++ http://msdn.microsoft.com/en-us/library/1ez7dh12.aspx A dynamic-link library (DLL) is an executable file that acts as a shared library of functions. Dynamic linking provides a way f... 阅读全文
posted @ 2013-02-02 00:00 Angelo Lee 阅读(239) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/ey142t48(v=vs.71).aspx What is Unicode? What is Multi-Byte? How to Convert between Unicode and Multi-Byte? Microsoft Support: http://msdn.microsoft.com/en-us/l... 阅读全文
posted @ 2013-01-31 20:14 Angelo Lee 阅读(366) 评论(0) 推荐(0) 编辑
摘要: DLLs in Visual C++Step by Step: Calling C++ DLLs from VC++ and VB - Part 1Step by Step: Calling C++ DLLs from VC++ and VB - Part 2什么是静态连接库lib,什么是动态链接库dll? 静态链接库与动态链接库都是共享代码的方式。两者区别:1.如果采用静态链接库,则无论你愿不愿意,lib 中的指令都全部被直接包含在最终生成的 EXE 文件中了。但是若使用 DLL,该 DLL 不必被包含在最终 EXE 文件中,EXE 文件执行时可以“动态”地引用和卸载这个与 EXE 独立的 阅读全文
posted @ 2013-01-30 12:32 Angelo Lee 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 当你运行程式得到了一个AV(Access Violation)错误的时候,这意味着你的程式正在试图访问一块不再有效的内存,请注意我所提到的“不再 ”有效。大多数的情况下,出现这个错误要么是因为你试图访问一块已经被释放的内存,要么是想使用一个还未创建对象的指针。 幸运的是:Win32的内存体系在不同的进程(Process)间使用了独立的地址空间。所以我们可以不必担心会访问到其他的进程中的地址空间而造成破坏,(在Win 16下就有这种潜在的危险).这也就意味着我们能够正确的利用错误对话框中的信息。 当我们得到一个AV错误对话框的时候,将会出现例如:Av at ddress ????的字样。这个时候 阅读全文
posted @ 2013-01-29 23:57 Angelo Lee 阅读(540) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 55 下一页