Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in effective-java

How do I make defensive copy of an object?

java : Function objects as strategies

Grouping Related Constants Shared Between Classes

java oop effective-java

What does the programming term "identity function" have to do with identity? (Java-oriented)

java effective-java

Can anyone explain me example from Joshua Bloch item 41? [duplicate]

java effective-java

Joshua Bloch Item #1 Static Factory Methods Instead of Constructors - Object creation

Definition of a constant field in Bloch's Effective Java 2nd edition

Builder pattern multiple varargs [duplicate]

Need I make all classes immutable?

Java - Generics - Explicit casting and cast method of Class "Class<?>"

Effective Java Item 9, is the CaseInsensitiveString example correct?

java effective-java

Is terminating an object is the same as nulling it?

java oop effective-java

What is a Scalar type and why is it riskier to suppress an unchecked cast to an array type than to a scalar type? [closed]

Should you avoid Guavas Ordering.usingToString()?

java guava effective-java

What is the most effective way of writing a factory method? [closed]

Is this class fully Immutable?

Item 9 (equals contract) from Effective Java: is the example correct?

Why UnaryFunction<Object> can be casted to UnaryFunction<T>?

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