I\'m very new to C++ and Qt, but I\'m very good at C#/Java.
The point is I like cross-platform, but I\'m confuse with Qt. Isn\'t std::vector
already cro
The bad experience I've had with QTL
was related to QTL
not raising any exceptions; this makes it harder to trace and fix critical errors. Also, STL
implementations are closely related to a compiler, because parts of the library require compiler-specific extensions to the language. This means a STL
implementation can often outperform QTL
, which needs to be portable and therefore cannot benefit from said extensions. The debugging issue was critical for me though.