#5 in Java programming books
Use arrows to jump to the previous/next product

Reddit mentions of Java How to Program, Early Objects (11th Edition) (Deitel: How to Program)

Sentiment score: 3
Reddit mentions: 4

We found 4 Reddit mentions of Java How to Program, Early Objects (11th Edition) (Deitel: How to Program). Here are the top ones.

Java How to Program, Early Objects (11th Edition) (Deitel: How to Program)
Buying options
View on Amazon.com
or
    Features:
  • THE FOUNDATION OF A GREAT RIDE: An outdoors inspired off-road cycling shoe that’s comfortable and capably equipped for adventures on paths, roads or trails
  • COMFORTABLE AND SUPPORTIVE FIT: Breathable synthetic suede and mesh upper for supple-yet-supportive fit and great breathability
  • ULTIMATE FIT ADJUSTMENT: Laces offer unrivaled fit adjustment, hold a knot securely and are the lightest closure system available
  • POWERFUL PEDALING: Injected nylon plate for efficient power transfer, with stainless steel hardware and a full-length molded Vibram Ecostep rubber high-traction lugged outsole for grip and stability when you need it
  • COMFORTABLE SUPPORTAND 2-BOLT CLEAT COMPATIBLE: Includes die-cut EVA footbed with medium arch support. Works with all 2-bolt pedal/cleat systems including Shimano SPD, Time ATAC, Crank Brothers, etc
Specs:
Height9.1 Inches
Length7 Inches
Number of items1
Weight3.55826090868 Pounds
Width2 Inches

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

Shuffle: random products popular on Reddit

Found 4 comments on Java How to Program, Early Objects (11th Edition) (Deitel: How to Program):

u/Cesar-Oswaldo · 3 pointsr/learnjava

here's a resource that helped me in learning java geeksForGeeks. After struggling with java for work for several months, I wish the following textbook was found earlier: Java How To Program, Early Objects My friend who actually studied computer science slapped me in the face with it. It's way better than OCA test prep books to achieve understanding

u/road_to_life · 2 pointsr/learnjava

Depending on how much C++ you know, I believe it would be best to start with one of the introductory books and skim real fast through parts which are perfectly clear to you, as a learning resource I can suggest either: https://www.amazon.com/Intro-Java-Programming-Comprehensive-Version/dp/0133761312 I even decided to buy physical book in order to get all the extra content, if you finish that book from cover to cover, do all the exercises and do online quizes and read bonus chapters you will have I dare to say "godlike" foundation in JavaSE and some decent introductory JavaEE knowledge as well (bonus chapters), or if you prefer to read something a bit more modern (Java 8/9) I would suggest: https://www.amazon.co.uk/Java-Program-Early-Objects-Deitel/dp/0134743350/ref=dp_ob_title_bk

u/eatstraw · 1 pointr/learnpython

I agree. The Design Patterns book by Gamma et al. is an excellent book on commonly accepted and proven OO design strategies. For a deep dive on OO concepts, I suggest looking at the Java programming language. Unlike Python, Java is designed to be OO from the ground up. In Python, OO is optional. This book by Deitel & Deitel is a thorough look at Java and OO concepts: Java How to Program - Early Objects. The Deitel books are really good.