Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in effective-java

In what ways can putting some code in try catch blocks prevent the JVM from doing optimization?

Need explanation for hashcode example in Effective Java textbook

Effective java Item no 74(on serialization): Implement Serializable judiciously

java effective-java

bitwise operator >>> in hashCode

Why are many Android API classes non-final, even though they are not explicitly documented for inheritance?

android effective-java

Why is the volatile field copied to a local variable when doing double check locking

Effective Java item 16 (2nd edition) - Is Forwarding class only used to allow re-use?

java oop effective-java

What is wrong with this Java Puzzlers piece of code?

generic maximum function in Java [duplicate]

Static factory methods in effective java

Java Serialization

classes managing own memory

Effective Java: Safety of Forwarding Classes

Why is there a need to override hashcode if I override the 'equals' method in Java?

Java: Why shouldn't clone() be used for defensive copying?

java effective-java

Enum Types as explained in Effective Java by Joshua Bloch

java enums effective-java

Adapting the Builder pattern for method invocation

Forwarding Class Example

java effective-java

Why is it safe to suppress this unchecked warning?

Equals method in Joshua Bloch's Effective Java

java equals effective-java