C++ standard library - when should I use it and when shouldn't I?

前端 未结 8 543
离开以前
离开以前 2020-12-29 19:23

I was wondering how often people actually use much of the standard c++ library, particularly the stuff in the and

8条回答
  •  礼貌的吻别
    2020-12-29 19:45

    You should use stl as much as possible.
    It has been written by pretty sophisticated programmers and it is very unlikely that you can write a more optimized version of any of stl stuff.
    Do not re-invent the wheel

提交回复
热议问题