Effective Java: Second Edition 2024 pdf epub mobi 电子书


Effective Java: Second Edition

简体网页||繁体网页

Effective Java: Second Edition 2024 pdf epub mobi 电子书 著者简介

Joshua Bloch is chief Java architect at Google and a Jolt Award winner. He was previously a distinguished engineer at Sun Microsystems and a senior systems designer at Transarc. Bloch led the design and implementation of numerous Java platform features, including JDK 5.0 language enhancements and the award-winning Java Collections Framework. He coauthored Java™ Puzzlers (Addison-Wesley, 2005) and Java™ Concurrency in Practice (Addison-Wesley, 2006).


Effective Java: Second Edition 电子书 图书目录




点击这里下载
    


想要找书就要到 本本书屋
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

发表于2024-12-22

Effective Java: Second Edition 2024 pdf epub mobi 电子书

Effective Java: Second Edition 2024 pdf epub mobi 电子书

Effective Java: Second Edition 2024 pdf epub mobi 电子书



喜欢 Effective Java: Second Edition 电子书 的读者还喜欢


Effective Java: Second Edition 电子书 读后感

评分

就内容来说还是相当不错的,翻译也挺好的不会有拗口的感觉.纸质有很多人抱怨过了我就不重复说了.不过对阅读不影响,反正是学里面的东西又不是冲着纸去的.不过话说回来有点小贵啊  

评分

序言 零散地读完《Effective Java》(中文版第二版),真心觉得这是一本经典书籍。现在想写一下读完这本书的整体收获,而不是涉及到书中某一个具体的知识点。 收获 在重点或疑问的地方,做出标记和注释 在读《Effective Java》时,对于前10条建议,我并没有理解得很深刻,...  

评分

序言 零散地读完《Effective Java》(中文版第二版),真心觉得这是一本经典书籍。现在想写一下读完这本书的整体收获,而不是涉及到书中某一个具体的知识点。 收获 在重点或疑问的地方,做出标记和注释 在读《Effective Java》时,对于前10条建议,我并没有理解得很深刻,...  

评分

case insensitive 是不区分大小写的,为什么翻译成区分大小写了。 但是作者的例子 也是区分大小写,String本来就区分大小写,作者到底是什么意图? ...  

评分

内容讲解得很到位。。。。。。。。。。。。。。。。。。。。 内容讲解得很到位。。。。。。。。。。。。。。。。。。。。 内容讲解得很到位。。。。。。。。。。。。。。。。。。。。 内容讲解得很到位。。。。。。。。。。。。。。。。。。。。 内容讲解得很到位。。。。。。...  

类似图书 点击查看全场最低价
出版者:Addison-Wesley
作者:[美] Joshua Bloch
出品人:
页数:346
译者:
出版时间:2008-05-28
价格:USD 54.99
装帧:Paperback
isbn号码:9780321356680
丛书系列:

图书标签: java  Java  编程  计算机  programming  软件开发  程序设计  Effective   


Effective Java: Second Edition 2024 pdf epub mobi 电子书 图书描述

Written for the working Java developer, Joshua Bloch's Effective Java Programming Language Guide provides a truly useful set of over 50 best practices and tips for writing better Java code. With plenty of advice from an indisputable expert in the field, this title is sure to be an indispensable resource for anyone who wants to get more out of their code.

As a veteran developer at Sun, the author shares his considerable insight into the design choices made over the years in Sun's own Java libraries (which the author acknowledges haven't always been perfect). Based on his experience working with Sun's best minds, the author provides a compilation of 57 tips for better Java code organized by category. Many of these ideas will let you write more robust classes that better cooperate with built-in Java APIs. Many of the tips make use of software patterns and demonstrate an up-to-the-minute sense of what works best in today's design. Each tip is clearly introduced and explained with code snippets used to demonstrate each programming principle.

Early sections on creating and destroying objects show you ways to make better use of resources, including how to avoid duplicate objects. Next comes an absolutely indispensable guide to implementing "required" methods for custom classes. This material will help you write new classes that cooperate with old ones (with advice on implementing essential requirements like the equals() and hashCode() methods).

The author has a lot to say about class design, whether using inheritance or composition. Tips on designing methods show you how to create understandable, maintainable, and robust classes that can be easily reused by others on your team. Sections on mapping C code (like structures, unions, and enumerated types) onto Java will help C programmers bring their existing skills to Sun's new language. Later sections delve into some general programming tips, like using exceptions effectively. The book closes with advice on using threads and synchronization techniques, plus some worthwhile advice on object serialization.

Whatever your level of Java knowledge, this title can make you a more effective programmer. Wisely written, yet never pompous or doctrinaire, the author has succeeded in packaging some really valuable nuggets of advice into a concise and very accessible guidebook that arguably deserves a place on most any developer's bookshelf. --Richard Dragan

Topics covered:

Best practices and tips for Java

Creating and destroying objects (static factory methods, singletons, avoiding duplicate objects and finalizers)

Required methods for custom classes (overriding equals(), hashCode(), toString(), clone(), and compareTo() properly)

Hints for class and interface design (minimizing class and member accessibility, immutability, composition versus inheritance, interfaces versus abstract classes, preventing subclassing, static versus nonstatic classes)

C constructs in Java (structures, unions, enumerated types, and function pointers in Java)

Tips for designing methods (parameter validation, defensive copies, method signatures, method overloading, zero-length arrays, hints for Javadoc comments)

General programming advice (local variable scope, using Java API libraries, avoiding float and double for exact comparisons, when to avoid strings, string concatenation, interfaces and reflection, avoid native methods, optimizing hints, naming conventions)

Programming with exceptions (checked versus run-time exceptions, standard exceptions, documenting exceptions, failure-capture information, failure atomicity)

Threading and multitasking (synchronization and scheduling hints, thread safety, avoiding thread groups)

Serialization (when to implement Serializable, the readObject(), and readResolve() methods)

Effective Java: Second Edition 2024 pdf epub mobi 电子书

Effective Java: Second Edition 2024 pdf epub mobi 电子书
想要找书就要到 本本书屋
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

Effective Java: Second Edition 2024 pdf epub mobi 用户评价

评分

字字珠玑,读过之后顿时觉得自己的程序千疮百孔,每一页都有巧妙无比但又实用的技巧与方法。必定要反复过目的经典

评分

同为Effective XXX,但这本书比《Effective C++》要好一个档次。本书介绍的许多经验和方法不仅针对Java程序员,C++,C#程序员同样可以获益,值得每一位程序员阅读!

评分

不错的java进阶读物~~~

评分

所以趕緊出1.8的啊

评分

Java 5后行走江湖三大件之一啊: Effective Java Java Generics Java Concurrency in Practice 相比之下,Practical API Design: Confession of a Java Framework Designer就相当啰嗦了

Effective Java: Second Edition 2024 pdf epub mobi 电子书


分享链接









相关图书




本站所有内容均为互联网搜索引擎提供的公开搜索信息,本站不存储任何数据与内容,任何内容与数据均与本站无关,如有需要请联系相关搜索引擎包括但不限于百度google,bing,sogou

友情链接

© 2024 onlinetoolsland.com All Rights Reserved. 本本书屋 版权所有