Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in effective-java

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

What is an AssertionError? In which case should I throw it from my own code?