#6,179 in Computers & technology books

Reddit mentions of Effective Java: Programming Language Guide (Java Series)

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of Effective Java: Programming Language Guide (Java Series). Here are the top ones.

Effective Java: Programming Language Guide (Java Series)
Buying options
View on Amazon.com
or
Specs:
Height9.25 Inches
Length7.25 Inches
Number of items1
Weight1.1904962148 Pounds
Width0.75 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on Effective Java: Programming Language Guide (Java Series):

u/NfNitLoop ยท 1 pointr/programming

Because the usual OOP inheritance is trickier than you think, and isn't desirable in many instances.

For example, if I want a completely different implementation, I don't want to drag along all of the overhead of some super class and all of its fields into my implementation.

Also, many languages allow you to declare a class as final, which blocks you from using inheritance.