<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_泽来-王者之剑</title><subtitle type="text">          谈笑但看风云起,龙腾尚待惊蛰春.                    明确的目标  详细的计划  大量的行动  反复的检查</subtitle><id>http://feed.cnblogs.com/blog/u/12369/rss</id><updated>2007-11-25T05:31:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/12369/rss"/><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2006/03/05/343068.html</id><title type="text">java多线程---线程之间的通信</title><summary type="text">1.setDaemon(boolean);为true 创建后面线程,在调用线程的start()方法之前调用。如果一个进程中没有任何前台线程，就算有后台线程在运行，整个进程仍然会结束。isDaemon()判断是不是后面进程Thread tt = new Thread();tt.isDaemon(); 2.setPriority(); 目前windows下只支持三个级别的优先级，分别是:Thread....</summary><published>2006-03-04T19:52:00Z</published><updated>2006-03-04T19:52:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2006/03/05/343068.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2006/03/05/343068.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2006/03/02/340755.html</id><title type="text">设计原则</title><summary type="text">类设计原则一：单一职责原则：一个类应该仅有一个引起它变化的原因 二：开放封闭原则： 类模块应该是可扩展的，但是不可修改。三：替换原则 子类必须能够替换它们的基类 四：依赖倒置原则 高层模块不应该依赖于低层模块， 二者都应该依赖于抽象。  抽象不应该依赖于实现细节， 实现细节应该依赖于抽象。 五：接口隔离原则 不应该强迫程序依赖于它们不用的方法。 基本面向对象设计原则:  一：针对接口编程而不是针对...</summary><published>2006-03-01T16:14:00Z</published><updated>2006-03-01T16:14:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2006/03/02/340755.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2006/03/02/340755.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2006/02/25/337344.html</id><title type="text">适配器模式</title><summary type="text">将一个类的接口转换成客户希望的另一个接口。Adapter模式使原来由于接口不兼容而不能一起工作的那些类能够一起工作。 GOF设计模式Adapter模式主要应用于&amp;#8220;希望复用一些现存的类，但是接口又与复用环境要求不一致的情况&amp;#8220;，在遗留代码复用，类库迁移等方面非常有用。usingSystem.Collections;usingSystem;interfaceIStack//客户期...</summary><published>2006-02-24T18:27:00Z</published><updated>2006-02-24T18:27:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2006/02/25/337344.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2006/02/25/337344.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327718.html</id><title type="text">java复习进程</title><summary type="text">开始:javac *.java编译java *(不要文件扩展名)super.父类的方法和成员变量子类中调用父类的构造涵数super()必须放在子类构造函数的第一条语句引用包文件import 包名创建包Backage 包名声明成员变量时系统会赋一个初始值,但如果在方法中,就一定要在声明同时初始化.访问修饰符缺省的访问修饰符(friendly)只能在同一个包中使用,出了包即使是子类也不能使用.'作用域...</summary><published>2006-02-09T06:24:00Z</published><updated>2006-02-09T06:24:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327718.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327718.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327551.html</id><title type="text">java小点滴</title><summary type="text">1.= = 和 equals()方法 = = 比较是否指向同一个引用,而equals()比较值equals()原形booleanequals(Objectobj){returnthis==obj;}Object对象默认使用了==操作符。所以如果你自创的类没有覆盖equals方法，那你的类使用equals和使用==会得到同样的结果。同样也可以看出，Object的equals方法没有达到equals方...</summary><published>2006-02-09T03:15:00Z</published><updated>2006-02-09T03:15:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327551.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327551.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327510.html</id><title type="text">转&gt;java5.0新特性</title><summary type="text">Java 5.0发布了，许多人都将开始使用这个JDK版本的一些新增特性。从增强的for循环到诸如泛型(generic)之类更复杂的特性，都将很快出现在您所编写的代码中。我们刚刚完成了一个基于Java 5.0的大型任务，而本文就是要介绍我们使用这些新特性的体验。本文不是一篇入门性的文章，而是对这些特性以及它们所产生的影响的深入介绍，同时还给出了一些在项目中更有效地使用这些特性的技巧。 　　简介　　在...</summary><published>2006-02-09T02:22:00Z</published><updated>2006-02-09T02:22:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327510.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2006/02/09/327510.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2006/01/24/322502.html</id><title type="text">面试题收集</title><summary type="text">1. C#中 property 与 attribute的区别，他们各有什么用处，这种机制的好处在哪里？ 2. 讲一讲你理解的web service,在dot net framework中，怎么很好的结合xml?（讲概念就行了）3. C#, Java 和 c++的特点，有什么相同的地方，不同的地方，C#分别从c++和java中吸取了他们那些优点？4. C#可否对内存进行直接的操作？(这可是个难点哦？...</summary><published>2006-01-24T02:45:00Z</published><updated>2006-01-24T02:45:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2006/01/24/322502.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2006/01/24/322502.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2006/01/02/309945.html</id><title type="text">我买的书</title><summary type="text">.net框架程序设计(修订版)作者:美 Jeffrey Richter 译:李建忠出版社:清华大学出版社 面向对象分析与设计 作者:美 GradyBooch 译:冯博琴 冯岚 薛涛 崔舒宁 出版社:机械工业出版社C#设计模式 作者:美 Steven John Metsker 译:颜炯出版社:中国电力出版社中文版Sql Server2000 开发与管理应用实例  作者:邹建 出版社:人民邮电出版社2...</summary><published>2006-01-02T14:25:00Z</published><updated>2006-01-02T14:25:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2006/01/02/309945.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2006/01/02/309945.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2005/12/30/308483.html</id><title type="text">java编程思想中关于多态性的描述</title><summary type="text">多态性是继数据抽象和继承之后，面向对象语言的第三个特征。它提供了另一个层面的接品与实现分离，也就是说把 做什么 和 怎么做分离开来。多态性是一项很重要的技术，它能够将会变的和不会变的东西分隔开来一些代码importjava.util.*;classNote{privateStringnoteName;privateNote(StringnoteName){this.noteName=noteNam...</summary><published>2005-12-30T12:19:00Z</published><updated>2005-12-30T12:19:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2005/12/30/308483.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2005/12/30/308483.html"/></entry><entry><id>http://www.cnblogs.com/sunsjorlin/archive/2005/12/30/307989.html</id><title type="text">javascipt正则表达式</title><summary type="text">构造函数new RegExp("pattern",flags );pattern 正则表达式文本flags 如果存在则为g 全文匹配; i 忽略大小写; gi 前两种组合^ 匹配一个输入或一行的开头&amp;amp; 匹配一个输入或一行的结尾* 匹配前面元字符0次或多次+ 匹配前面元字符1次或多次? 匹配前面的元字符0次或1次x|y 匹配x或y{n} 精确匹配n次{n,} 匹配n以上次数{n,m} 匹配n...</summary><published>2005-12-30T03:02:00Z</published><updated>2005-12-30T03:02:00Z</updated><author><name>泽来</name><uri>http://www.cnblogs.com/sunsjorlin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sunsjorlin/archive/2005/12/30/307989.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sunsjorlin/archive/2005/12/30/307989.html"/></entry></feed>
