Effective Java Programming Language Guide phần 1 doc

18 402 0
Effective Java Programming Language Guide phần 1 doc

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

[...].. .Effective Java: Programming Language Guide This book uses a few technical terms that are not defined in The Java Language Specification The term exported API, or simply API, refers to the classes, interfaces, constructors, members, and serialized forms by which a programmer accesses a class, interface, or package (The term API, which is short for application programming interface,... support Not coincidentally, they are also the elements for which the Javadoc utility generates documentation in its default mode of operation Loosely speaking, the exported API of a package consists of the public and protected members and constructors of every public class or interface in the package 7 Effective Java: Programming Language Guide Chapter 2 Creating and Destroying Objects This chapter concerns... Item and Item 21, which describes the typesafe enum pattern In both cases, private constructors are used in conjunction with public static members to ensure that no new instances of the relevant class are created after it is initialized In the case of this item, only a single instance of the class is created; in Item 21, one instance is created 12 Effective Java: Programming Language Guide for each... is initialized—no more, no less Nothing that a client does can change this In a second approach, a public static factory method is provided instead of the public static final field: 11 Effective Java: Programming Language Guide // Singleton with static factory public class Elvis { private static final Elvis INSTANCE = new Elvis(); private Elvis() { } public static Elvis getInstance() { return INSTANCE;... conventions These conventions are still evolving, but two names for static factory methods are becoming common: 10 Effective Java: Programming Language Guide • • valueOf— Returns an instance that has, loosely speaking, the same value as its parameters Static factory methods with this name are effectively type-conversion operators getInstance— Returns an instance that is described by its parameters but... instead of creating a new functionally equivalent object each time it is needed Reuse can be both faster and more stylish An object can always be reused if it is immutable (Item 13 ) 13 Effective Java: Programming Language Guide As an extreme example of what not to do, consider this statement: String s = new String("silly"); // DON'T DO THIS! The statement creates a new String instance each time it... is that, unlike constructors, they are not required to create a new object each time they're invoked This allows immutable classes (Item 13 ) to use preconstructed instances or to cache instances as they're constructed and to 8 Effective Java: Programming Language Guide dispense these instances repeatedly so as to avoid creating unnecessary duplicate objects The Boolean.valueOf(boolean) method illustrates... the Java Cryptography Extension (JCE) A service provider framework is a system wherein providers make multiple implementations of an API available to users of the framework A mechanism is provided to register these implementations, making them available for use Clients of the framework use the API without worrying about which implementation they are using 9 Effective Java: Programming Language Guide. .. isBabyBoomer() { Calendar gmtCal = Calendar.getInstance(TimeZone.getTimeZone("GMT")); gmtCal.set (19 46, Calendar.JANUARY, 1, 0, 0, 0); Date boomStart = gmtCal.getTime(); gmtCal.set (19 65, Calendar.JANUARY, 1, 0, 0, 0); Date boomEnd = gmtCal.getTime(); return birthDate.compareTo(boomStart) >= 0 && birthDate.compareTo(boomEnd) < 0; } 14 ... some people abuse them to write procedural programs in object-oriented languages, but they do have valid uses They can be used to group related methods on primitive values or arrays, in the manner of java. lang.Math or java. util.Arrays, or to group static methods on objects that implement a particular interface, in the manner of java. util.Collections They can also be used to group methods on a final . 1. 1.x 1. 1 Java 2 Platform, Standard Edition, v 1. 2 1. 2 Java 2 Platform, Standard Edition, v 1. 3 1. 3 Java 2 Platform, Standard Edition, v 1. 4 1. 4 While features introduced in the 1. 4 release. while I wrote. Effective Java: Programming Language Guide 5 Chapter 1. Introduction This book is designed to help you make the most effective use of the Java programming language and its.

Ngày đăng: 12/08/2014, 22:22

Từ khóa liên quan

Tài liệu cùng người dùng

Tài liệu liên quan