Java學(xué)習(xí)曲線

JavaEE

  • Java基礎(chǔ)視頻 [241/241]
    以下是某培訓(xùn)機(jī)構(gòu)給出的Java學(xué)習(xí)曲線
    Java學(xué)習(xí)曲線.png

Milestone

2016/03/11 Java編程思想


《Thinking in Java》學(xué)習(xí)記錄

  1. 對象導(dǎo)論
  2. 一切都是對象
  3. 操作符
  4. 控制執(zhí)行流程
  5. 初始化與清理
  6. 訪問控制權(quán)限
  7. 復(fù)用類
  8. 多態(tài)
  9. 接口
  10. 內(nèi)部類
  11. 持有對象
  12. 通過異常處理錯(cuò)誤
  13. 字符串
  14. 類型信息
  15. 泛型
  16. 數(shù)組
  17. 容器深入研究
  18. Java I/O系統(tǒng)
  19. 枚舉類型
  20. 注解
  21. 并發(fā)
  22. 圖形化用戶界面

Within a class, the order of initialization is determined by the order that the variables are defined within the class. The variable definitions may be scattered throughout and in between method definitions, but the variables are initialized before any methods can be called--even the constructor.


《Thinking in Pattern》學(xué)習(xí)記錄

  1. 單例模式
    Possibly the simplest design pattern is the singleton, which is a way to provide one and only one object of a particular type. An important aspect of Singleton is that you provide a global access point, so singletons are often a solution for what you would have used a global variable for in C. In addition, a singleton often has the characteristics of a registry or lookup service – it’s a place you go to find references to other objects.
    keywords:餓漢式、懶漢式、枚舉式、線程安全

  2. 代理模式

  3. 狀態(tài)模式

  4. 迭代器模式
    You’ve also already seen another pattern that appears in Design Patterns: the iterator (Java 1.0 and 1.1 capriciously calls it the Enumeration; Java 2 containers use “iterator”). This hides the particular implementation of the container as you’re stepping through and selecting the elements one by one. The iterator allows you to write generic code that performs an operation on all of the elements in a sequence without regard to the way that sequence is built. Thus your generic code can be used with any container that can produce an iterator.

  5. 策略模式

  6. Template method

  7. 工廠模式
    keywords:polymorphic factories,abstract factories

補(bǔ)充閱讀
Design Patterns in Java Tutorial


Spring學(xué)習(xí)記錄

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容