`
zhang_xzhi_xjtu
  • 浏览: 536615 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

《Effective Java》2nd变更简评

阅读更多
《Effective Java》无疑是java领域的经典著作。第二版出来后,看了看,然后和第一版对比一下。

下面介绍第二版的变更,以及揣摩作者的意图。

删掉了原来的Substitutes for C constructs一章。


C2  Creating and Destroying Objects

Item 1 Consider static factory methods instead of constructors.

Item 2 Consider a builder when faced with many constructor parameters.
新加的一个条目,这个条目介绍了Builer模式的用法,但是似乎和这本书的原有条目的特点不符合。而Builder一般在介绍设计模式的书籍里面会进行全面的介绍。放在这里有些不伦不类。有凑数之嫌。或许大师有其他的考虑。

Item 3 Enforce the singleton property with a private constructor or an enum type.
新加入了Enum type来实现Singleton。
从语法上讲,这样当然是可以的,但是谈及Enum对于程序员来说,第一反应一般还是说有几个并列的概念组成的一个枚举集合,一个Enum定义一个元素来实现Singleton怎么看都是怪怪的。貌似作者很爱Enum,在第二版多处用到了Enum。

Item 4 Enforce noninstantiability with a private constructor.

Item 5 Avoid creating unnecessary objects.
第一版的duplicate objects变成了unnecessary objects,这个虽然是一个很细小的变动,但是味道十足,慢慢品之。

Item 6 Eliminate obsolete object references.

Item 7 Avoid finalizers.


C3  Methods Common to All Objects

Item 8: Obey the general contract when overriding equals
Item 9: Always override hashCode when you override equals
Item 10: Always override toString
Item 11: Override clone judiciously
Item 12: Consider implementing Comparable
没有变化,老样子。


C4  Classes and Interfaces

Item 13: Minimize the accessibility of classes and members

Item 14: In public classes, use accessor methods, not public fields
新加的条目。

Item 15: Minimize mutability
原为Favor immutability. 现在改成了Minimize mutability,覆盖的范围更广一点。

Item 16: Favor composition over inheritance

Item 17: Design and document for inheritance or else prohibit it

Item 18: Prefer interfaces to abstract classes

Item 19: Use interfaces only to define types

Item 20: Prefer class hierarchies to tagged classes
新加的条目。解释了在类的设计中引入tag field的坏处,以及如何用类的继承体系去实现相似的功能。

Item 21: Use function objects to represent strategies
新加的条目。这个条目好像意义不大,讲解了java在没有原生函数指针的情况下如何用其他手段完成函数指针的功能。

Item 22: Favor static member classes over nonstatic


C5  Generics

    Item 23: Don't use raw types in new code
    Item 24: Eliminate unchecked warnings
    Item 25: Prefer lists to arrays
    Item 26: Favor generic types
    Item 27: Favor generic methods
    Item 28: Use bounded wildcards to increase API flexibility
    Item 29: Consider typesafe heterogeneous containers
这一章是新增的,主要介绍java5泛型的使用。讲解的比较好,主要是讲解怎么用,对原理基本不介绍。


C6  Enums and Annotations

    Item 30: Use enums instead of int constants
    Item 31: Use instance fields instead of ordinals
    Item 32: Use EnumSet instead of bit fields
    Item 33: Use EnumMap instead of ordinal indexing
    Item 34: Emulate extensible enums with interfaces
    Item 35: Prefer annotations to naming patterns
    Item 36: Consistently use the Override annotation
    Item 37: Use marker interfaces to define types

这一章是新增的,主要介绍Enum和Annotation。
个人感觉作者对于Enum过于偏爱了,对于Enum有些过度使用了。例如实现复杂接口,考虑继承的实现等等。如果Enum用的这么复杂,用《java编程语言》一书的思想来说,应该考虑用类而不是Enum了。


C7  Methods

Item 38: Check parameters for validity

Item 39: Make defensive copies when needed

Item 40: Design method signatures carefully

Item 41: Use overloading judiciously

Item 42: Use varargs judiciously
新的条目。

Item 43: Return empty arrays or collections, not nulls
加入了Collections.

Item 44: Write doc comments for all exposed API elements


C8  General Programming

    Item 45: Minimize the scope of local variables

    Item 46: Prefer for-each loops to traditional for loops
    新增条目,增加了对新的语言特性的for-each的讲解,以及什么时候使用这个特性比较好的说明。

    Item 47: Know and use the libraries

    Item 48: Avoid float and double if exact answers are required

    Item 49: Prefer primitive types to boxed primitives
    新增条目。引入自动装箱拆箱是一个有利有弊的事情。大部分情况下还是Primitive比较好用。

    Item 50: Avoid strings where other types are more appropriate

    Item 51: Beware the performance of string concatenation

    Item 52: Refer to objects by their interfaces

    Item 53: Prefer interfaces to reflection

    Item 54: Use native methods judiciously

    Item 55: Optimize judiciously

    Item 56: Adhere to generally accepted naming conventions


C9  Exceptions

    Item 57: Use exceptions only for exceptional conditions
    Item 58: Use checked exceptions for recoverable conditions and runtime exceptions for programming errors
    Item 59: Avoid unnecessary use of checked exceptions
    Item 60: Favor the use of standard exceptions
    Item 61: Throw exceptions appropriate to the abstraction
    Item 62: Document all exceptions thrown by each method
    Item 63: Include failure-capture information in detail messages
    Item 64: Strive for failure atomicity
    Item 65: Don't ignore exceptions

没有变化,老样子。


C10  Concurrency

    Item 66: Synchronize access to shared mutable data
    Item 67: Avoid excessive synchronization
    Item 68: Prefer executors and tasks to threads
    Item 69: Prefer concurrency utilities to wait and notify
    Item 70: Document thread safety
    Item 71: Use lazy initialization judiciously
    Item 72: Don't depend on the thread scheduler
    Item 73: Avoid thread groups

本章的标题从Threads变成Concurrency,体现了java对并发编程支持的进步。
删掉了老的Never invoke wait outside a loop。不是这个不重要,估计大家都知道了。
所以没有单列一个Item,在文中还是有提及的。
Item68,Item69,Item71为新增的。主要是对java5新加的concurrency做介绍。
但是不得不说,这个简介太蜻蜓点水了。不如本书的其它章节那么详尽深入。
作为java5一个重要的新特性,没有得到重视啊。有可能是concurrency太复杂,展开论述篇幅太大吧。


C11  Serialization

    Item 74: Implement Serializable judiciously
    Item 75: Consider using a custom serialized form
    Item 76: Write readObject methods defensively
    Item 77: For instance control, prefer enum types to readResolve
作者对Enum真是偏爱啊,总觉得这么使用Enum有点别扭。
    Item 78: Consider serialization proxies instead of serialized instances
新增条目,介绍一种安全简单的模式来系列化对象。
分享到:
评论

相关推荐

    Effective Java读书笔记.pdf

    "Effective Java读书笔记" Effective Java是一本关于Java编程语言的经典书籍,本笔记主要总结了Java语言的发展历程、静态工厂方法的应用、构造器模式的使用等重要知识点。 一、Java语言的发展历程 Java语言的发展...

    Effective Java第三版1

    《Effective Java》是Java编程领域的一本经典著作,由Joshua Bloch撰写,该书的第三版继续提供了关于如何编写高效、优雅、可维护的Java代码的指导。以下是基于给出的目录和部分内容提取的一些关键知识点: ### 第一...

    effective-java.pdf

    标题“effective-java.pdf”与描述“effective-java.pdf”表明本文档是关于Java编程实践的指南,且内容可能来自于一本名为《Effective Java》的书籍,该书是由Joshua Bloch编写,被广泛认为是Java编程的权威指南。...

    effectiveJava课件分享

    在编程领域,特别是Java开发中,"Effective Java"是一本非常经典的书籍,由Joshua Bloch撰写,书中提出了一系列最佳实践和设计原则,以帮助开发者编写出更高效、更安全的代码。根据提供的标题和描述,我们将探讨三个...

    《Effective Java》读书分享.pptx

    "Effective Java 读书分享" 《Effective Java》读书分享.pptx 是一本 Java 编程语言指南,旨在帮助开发者编写高质量、可维护的 Java 代码。该书包含 90 个条目,每个条目讨论一条规则,涵盖了 Java 编程语言的...

    Effective.Enterprise.Java.中文版 高清pdf 下载

    《Effective Enterprise Java》是Java开发领域的一本经典著作,由著名技术专家Bill Venners编著,被广大Java开发者誉为“四大名著”之一。这本书深入探讨了在企业级Java开发中如何写出高效、可维护和易于理解的代码...

    Effective-Java-2nd-Edition-(May-2008).zip_effective java

    《Effective Java》是Java编程领域的一本经典著作,由Joshua Bloch撰写,第二版发布于2008年。这本书旨在提供实用的编程指导,帮助开发者写出更高效、更可维护的Java代码。以下是对书中核心知识点的详细解读: 1. *...

    effective c++ 2nd 中文

    《Effective C++ 2nd Edition》是一本由Scott Meyers撰写的经典C++编程指南,中文版的出现使得更多的中国开发者能深入理解C++的精髓。这本书的核心目标是帮助程序员写出更高效、更易于理解和维护的C++代码。在描述中...

    effective java 读书笔记

    《Effective Java》是Java开发领域的经典著作,作者Joshua Bloch深入浅出地阐述了编写高效、健壮的Java代码的技巧和最佳实践。以下是对该书部分内容的详细解释: 1. **产生和销毁对象** - Item1:静态工厂方法相比...

    Effective java 3 学习记录.docx

    Effective Java 3 学习记录 本学习记录主要介绍了 Effective Java 3 中的静态工厂方法和 Builder 模式两部分内容。 一、静态工厂方法 静态工厂方法是指返回类实例的命名规则,例如:from、of、valueOf、instance ...

    Effective Java.zip

    《Effective Java》是一本经典Java编程指南,作者是Joshua Bloch,这本书深入探讨了如何编写高质量、高效、可维护的Java代码。以下是对压缩包中各章节主要知识点的详细阐述: 1. **第2章 创建和销毁对象** - 单例...

    effective-java 配套代码

    《Effective Java》是Java开发领域的一本经典著作,由Joshua Bloch撰写,书中提出了一系列编程最佳实践和设计模式,帮助开发者写出更高效、更可靠、更易于维护的Java代码。配套代码`effective-java-examples-master`...

    1_Effective_Java_2nd_Edition_proglib_java_Joshua_

    《Effective Java》是Java编程领域的一本经典著作,由知名程序员和计算机科学家Joshua Bloch撰写。这本书的第二版深入探讨了如何编写高效、可维护的Java代码,并提供了许多实用的编程指南和最佳实践。以下是根据标题...

    [Java] Effective Java 第2版 (英文版)

    [Addison-Wesley] Effective Java 2nd Edition (E-Book) ☆ 出版信息:☆ [作者信息] Joshua Bloch [出版机构] Addison-Wesley [出版日期] 2008年05月28日 [图书页数] 346页 [图书语言] 英语 [图书格式] PDF ...

Global site tag (gtag.js) - Google Analytics