Java学习曲线

作者: elon | 来源:发表于2015-08-01 15:24 被阅读1020次

JavaEE

  • Java基础视频 [241/241]
    以下是某培训机构给出的Java学习曲线
    Java学习曲线.png

Milestone

2016/03/11 Java编程思想


《Thinking in Java》学习记录

  1. 对象导论
  2. 一切都是对象
  3. 操作符
  4. 控制执行流程
  5. 初始化与清理
  6. 访问控制权限
  7. 复用类
  8. 多态
  9. 接口
  10. 内部类
  11. 持有对象
  12. 通过异常处理错误
  13. 字符串
  14. 类型信息
  15. 泛型
  16. 数组
  17. 容器深入研究
  18. Java I/O系统
  19. 枚举类型
  20. 注解
  21. 并发
  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》学习记录

  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. 状态模式

  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

补充阅读
Design Patterns in Java Tutorial


Spring学习记录

相关文章

  • Java学习曲线

    JavaEE Java基础视频 [241/241]以下是某培训机构给出的Java学习曲线Java学习曲线.png ...

  • 哲哲的ML笔记(二十一:学习曲线)

    学习曲线的含义 学习曲线就是一种很好的工具,我经常使用学习曲线来判断某一个学习算法是否处于偏差、方差问题。学习曲线...

  • 用学习曲线 learning curve 来判别过拟合问题

    本文结构: 学习曲线是什么? 怎么解读? 怎么画? 学习曲线是什么? 学习曲线就是通过画出不同训练集大小时训练集和...

  • 学习曲线

    反思自己的学习之路,好像真的不是那么顺畅,一直都是热情饱满的开始,但是很快就会放弃结束,今天我找到了原因。 问题就...

  • 学习曲线

    在机器学习中,模型的欠拟合和过拟合是需要格外注意的问题,同时也是经常发生的问题,其中过拟合最为常见. 欠拟合,即训...

  • 学习曲线

    人不是因为学得快才变得博学,而是因为博学才学得更快。 学习学习曲线的slow beginning,steep ac...

  • 学习曲线

    一 概念介绍 企业员工在生产产品的过程中,存在随着产量提升,但是技术熟练度不断提高,单位产品制造时间会越来越短,由...

  • 零基础学Java常见的4种错误!

    Java是一种复杂的编程语言,在很长一段时间内一直主导着许多生态系统。可移植性、自动垃圾收集及其温和的学习曲线使其...

  • 《认知方法论》(四)

    认知升级是学习曲线陡峭上升的状态,认知留级是学习曲线越来越平缓,甚至往下滑的状态。认知留级最重要的状态不是新的认知...

  • 过拟合的概念

    糟糕的“举一反三”和过拟合 蓦然回首,学习曲线 假设目标函数是50次函数学习曲线 高方差时,增加样本量可以提高模型效果。

网友评论

    本文标题:Java学习曲线

    本文链接:https://www.haomeiwen.com/subject/gjhvqttx.html