随笔分类 -  Java

摘要:15:00--17:30 Cost benefit Cost Benefit Analysis is a technique used to determine whether a planned action will turn out good or bad. Here is how a cost benefit analysis is done. trade off ROI ... 阅读全文
posted @ 2007-11-21 18:17 许晓光 阅读(242) 评论(0) 推荐(0)
摘要:http://www.eclipse.org/aspectj/ a seamless aspect-oriented extension to the Javatm... 阅读全文
posted @ 2007-10-22 09:04 许晓光 阅读(200) 评论(0) 推荐(0)
摘要:http://java.sun.com/developer/technicalArticles/Intl/ResourceBundles/ 阅读全文
posted @ 2007-09-26 12:42 许晓光 阅读(177) 评论(0) 推荐(0)
摘要:1package TestJava; 2public class MainClass { 3 4 public static void main(String args[] ){ 5 System.out.println("Hello"); 6 } 7} 8 Java 我会阿! 阅读全文
posted @ 2007-09-12 15:37 许晓光 阅读(189) 评论(0) 推荐(0)
摘要:MVC最初是在Smalltalk-80中被用来构建用户界面的。M代表模型Model, V代表视图 View, C代表 控制器Controller。MVC的目的是增加代码的重用率,减少数据表达,数据描述和应用操作的耦合度。 同时也使得软件可维护性,可修复性,可扩展性,灵活性以及封装性大大提高。一个以MVC为架构的系统包含了很多的设计模式,但是与MVC最为密切相关的是下面三种模式:Observer, ... 阅读全文
posted @ 2007-07-30 17:06 许晓光 阅读(549) 评论(0) 推荐(0)