[置顶]博客文章汇总目录
博客传送机,帮你快速定位所需教程,以后的文章也将在此帖同步更新,后期将不断加入博客外的优秀学习资源链接和下载地址。
博客传送机,帮你快速定位所需教程,以后的文章也将在此帖同步更新,后期将不断加入博客外的优秀学习资源链接和下载地址。
The LinkedList class extends AbstractSequentialList and implements the List interface. LinkedList supports sequential access data store.
The ArrayList class extends AbstractList and implements the List interface. ArrayList supports dynamic arrays that can grow as needed.
It’s a fairly simple program that only has a fixed quantity of objects with known lifetimes.
You gotta have a little faith man.
Interfaces and abstract classes provide more structured way to separate interface from implementation.
多态是一项让程序员将改变的事物与未变的事物分离开来的重要技术。
One of the most compelling features about Java is code reuse. But to be revolutionary, you’ve got to be able to do a lot more than copy code and change it.
把数据和方法包装进类中,以及具体实现的隐藏,常共同被称作封装。
很多文章习惯将高级编程语言分成编译型语言和解释型语言,其实这是有误导成分的。语言一般只会定义其抽象语义,而不会强制性要求采用某种实现方式。