Hello
Im nearly done with c++ primer and i want to know if i should read another book about c++ and master c++ as much as i can or go with something else.
I created passion for this and i want to learn so much about it. Im reading +/- 50 pages per day.
I was thinking about buying SQL or Java books or should i master c++ and then learn something else. If so which C++ book would you recommend after primer ?
And where can i use c++ to gain some practical skill as i'm only 15years old ?
Would be book about QT framework for C++ bad choice ?
You should first get comfortable with the C++ Standard Library before getting into 3rdParty C++ Libraries.
You should learn about the C++ language features including:
- pointers
- exceptions
- classes
--- special members
--- polymophism
--- operators
- templates
new in C++11:
- smart pointers
- move semantics
- threading module
(note that this might not be a complete list)
So no, get some very good C++ books about C++ and then take a look at other Libraries.