Effective Java is a book by Joshua Bloch "designed to help Java programmers make the most effective use of the Java programming language and its fundamental libraries"
In Item 2 of the "Effective Java, 2nd edition" book, there is this snippet of code, in which the author wants …
java exception effective-javaSo I've been reading some Effective Java! And one of the most inspiring sections of the book is the Immutable …
java object model effective-javaI am reading the chapter on Serialization in Effective Java. Who calls the readObject() and writeObject()? Why are these methods …
java serialization effective-javaEffective java says: // Potential security hole! static public final Thing[] VALUES = { ... }; Can somebody tell me what is the security hole?
java effective-javaWhat is the difference between compile time and run time type of any object in Java ? I am reading Effective …
java generics effective-javaI am reading the Effective Java by Joshua Bloch and I have question about Item1 Static Factory Method. Quote[Bloch, …
java design-patterns factory effective-javaIn Item 2 of Effective Java (2nd Edition), the author mentions the following about imposing invariants on parameters while using Builders: …
java design-patterns builder effective-javaI had a question regarding the "Builder Pattern" covered in "Effective Java". Do we need a .build() method for it …
java design-patterns builder effective-javaI have the following piece of code from effective java by Joshua Bloch (Item 9, chapter 3, page 49) If a class is …
java caching hashcode effective-javaI am reading the chapter on Generics from Effective Java[Item 27]. There is this paragraph in the book: It is …
java generics effective-java