摘要:
1:首先安装cygwin(推荐用这个c/c++的编译环境),然后安装eclipse的cdt插件。 2:windows的dos提示符下先执行 set cygwin=tty notitle glob 命令,而后执行 set path=x:\cygwin\bin;%path% 命令。注意x:\cygwin 为cygwin的安装路径。 3:进入eclipse,new一个managed make c++......
摘要:
1.以下代码为跟踪的方法using system.diagnostics;namespace coreplus.framework.utility{ public class logutility {// 侦听器private static textwritertracelistener listner = null;// 输出跟踪文件private const string trace_fil......
关于ThreadLocal的几篇文章
http://blog.blogchina.com/article_7742.17870.html http://qszhuang.blogchina.com/blog/article_20407.72483.html http://www.acknowledge.co.uk/java/tutorial/servlet_tutorial/servlets/service_requests.html
摘要:
学习java2sdk 1.4.0 java.util里边有几个重要的接口,列在这里作为学习的总结:1 java.util.enumeration有两个方法hasmoreelements(),nextelement()。使用方法如下://打印向量v的所有元素for(enumeratin e = v.elements(); e.hasmoreelements();){ system.out.prin......