Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in effective-java

What does Joshua Bloch mean by extra-linguistic?

java clone effective-java

Why are the angle brackets before the return type omitted sometimes from the definition of a generic method

Builder pattern validation - Effective Java

unchecked exception that would have been better as checked

What is the difference between a compile time type vs run time type for any object in Java?

How does casting this object to a generic type work?

Why did Joshua Bloch use 2*size + 1 for resizing the stack in Effective Java?

java effective-java

Do we need a .build() method in the Builder Pattern?

Effective Java Item 17: How can overriding removeRange() improve performance?

Do we ever need to prefer constructors over static factory methods? If so, when?

What does it mean to say that int enum patterns are compile-time constants?

Why do we need bounded wilcard <? extends T> in Collections.max() method

What is a nonmemory resource?

java effective-java

Effective Java Item 47: Know and use your libraries - Flawed random integer method example

Class.asSubclass signature

How does the JVM reuse interned String substrings?

What does "Recursive type bound" in Generics mean?

Understanding the concept behind Service provider framework like JDBC using the factory method

Why are readObject and writeObject private, and why would I write transient variables explicitly?

Why are public static final array a security hole?

java effective-java