先搭个架子,留着慢慢补充


读源码(JDK 6)

阅读java.lang 和 java.util 包,了解熟悉java基础用法背后实现原理。


  • 读源码JDK 6
    •       javaLang
      •             接口 - Interfaces
      •             类 - Classes
      •             枚举 - Enums
      •             错误 - Errors
      •             注释类型 - Annotation Types
    •       javaUtil
      •             接口- Interfaces
      •             类 - Classes
      •             枚举 - Enums
      •             错误 - Errors
      •             注释类型 - Annotation Types


      java.Lang


            接口 - Interfaces

|——Appendable
|- CharSequence
|- Cloneable
|- Comparable
|- Iterable
|- Readable
|- Runnable
|- Thread.UncaughtExceptionHandler


            类 - Classes

|- Boolean
|- Integer

here

            枚举 - Enums

here

            错误 - Errors

here

            注释类型 - Annotation Types

here

      java.Util


            接口- Interfaces

here

            类 - Classes

here

            枚举 - Enums

here

            错误 - Errors

here

            注释类型 - Annotation Types

here

你可能感兴趣的:(java基础知识储备)