C++ – How important is it that you know the C++ standard

cstandards

I did try searching, but I did not see a similar question (either that or my search terminology was incorrect – if so, feel free to close).

I am an avid user of SO, and I notice that there are lots of references to the C++ standard in discussions and answers – and I have to admit, I have never read this particular document, the language makes my eyes hurt… So, the question is, can a C++ developer really code for a living without ever having read this document? Is it really important for us mere mortals who are not in the business of writing compilers?

Best Answer

Nope - you can get along just fine without it

However, you'll have a much deeper understanding if you take the time to learn it. Perhaps follow the references from those questions that trouble you and learn a small chunk at a time.

Related Topic