#726 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of Object-Oriented Programming in C++ (4th Edition)

Sentiment score: 4
Reddit mentions: 6

We found 6 Reddit mentions of Object-Oriented Programming in C++ (4th Edition). Here are the top ones.

Object-Oriented Programming in C++ (4th Edition)
Buying options
View on Amazon.com
or
    Features:
  • Used Book in Good Condition
Specs:
ColorPurple
Height9 Inches
Length7.25 Inches
Number of items1
Weight3.77872317068 Pounds
Width2 Inches

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

Shuffle: random products popular on Reddit

Found 6 comments on Object-Oriented Programming in C++ (4th Edition):

u/ComradeBeaver · 7 pointsr/cpp

I'd recommend https://www.learncpp.com as a good point to start.

In C++ you should keep in mind that it is old, complex and multi-paradigm language, so some architecture decisions of language can looks weird because of many reasons.

  • After the tutorial you should read Stroustrup's book to understand paradigms of language, his history and idiomatic view of C++.
  • After that I recommend to read OOP C++ book, https://www.amazon.com/Object-Oriented-Programming-4th-Robert-Lafore/dp/0672323087 for instance, cause OOP paradigm in C++ has his own features.
  • Nicolai M Josuttis's C++ Standard Library will be good to understand full power of STL, although is not so big as Python standard library.
  • CppCoreGuidelines, Scott Meyers' books(all) are good things but make sense after some experience with C++. In a matter of fact this things are sets of advices, best practices in modern C++.

    To make a long story short, I want to advice you good books for intermediate of C++:

  • Exceptional C++ by Herb Sutter
  • Accelerated C++: Practical Programming
  • C++ Concurrency in Action: Practical Multithreading
  • C++ Templates - The Complete Guide, 2nd Edition by David Vandevoorde, Nicolai M. Josuttis, and Douglas Gregor
  • C++ In-Depth Series

    ​

    Good luck!
u/josyula · 1 pointr/learnprogramming

Its good to start with C++ it encompasses all the major programming concepts like pointers,polymorphism,inheritance,Object oriented programming. catch a good book i studied from Robert Lafore.
( http://www.amazon.com/Object-Oriented-Programming-C-4th-Edition/dp/0672323087 ) You can also try the C++ Primer ( http://rads.stackoverflow.com/amzn/click/0321714113 ) which is considered by far the best book for C++ by many programmers it delves deeply through the concepts all the best.

u/rlapchynski · 1 pointr/computerscience

I taught myself C++ from a used copy of this book. I can't really compare it against others like it, but I thought it was pretty good.

u/lookitsmarc · 1 pointr/learnprogramming

I am currently learning with Object-Oriented Programming in C++ by Lafore and I have nothing but good things to say about it.

u/killdeer03 · 1 pointr/cpp

I really liked Object-Oriented Programming in C++ by Robert Lafore. It is pretty big, but it covers a lot really great topics about C/C++

It also covers a lot of programming paradigm, methodologies, and design patters. It might even cover (in-depth) data structures, when I get home I'll check on that last part.