What is the best documentation/reference for the C++ language do you think one can use, especially in terms of clarity in explaining things?
Thanks.
|
What is the best documentation/reference for the C++ language do you think one can use, especially in terms of clarity in explaining things? Thanks. |
||||
|
|
|
Do you need a reference or something that explains concepts? For the latter, there is no substitute for a good book, such as Programming: Principles and Practice using C++, Accelerated C++, or the bible: The C++ Programming Language. For a reference, usually for the standard library, almost anything will work – and it's a more personal choice about what fits into your workflow and works best for you. For example, I've grown used to reading the standard itself (I got a copy nearly a decade ago), but, frankly, it probably is not nearly as useful for most. |
|||
|
|
|
This is pretty subjective, I think. I use this. I find it pretty clear. |
|||||||||||||||||
|
|
9 times in 10 when I look for something related to c++ during the work I fall to cplusplus.com |
|||
|
I personally use MSDN as my reference for all things C++. Their documentation is normally pretty high quality and all Microsoft extensions are marked explicitly. Either that, or ask a question on SO. |
|||
|
|
|
I use cplusplus.com for standard library reference. |
|||
|
|
|
Most all of the documentation sources listed in the C++ Tag Wiki are going to be reasonable resources to use. Just always know that the standard trumps any other reference :) |
|||
|
|