摘要:
From Thinking in Java 4th Edition.泛型实现了:参数化类型的概念,使代码可以应用于多种类型。“泛型”这个术语的意思是:“适用于许多许多的类型”。如果你了解其他语言(例如: C++)中的参数化类型机制,你就会发现,有些以前能做到的事情,使用Java的泛型机制却无法做到。... 阅读全文
摘要:
From Head First Design Patterns.Design Principle:Idnetify the aspects of your application that vary and separate them from what stays the same.Here's ... 阅读全文