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

前端 未结 8 597
离开以前
离开以前 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:48

    When should you use the C++ Standard library? When it provides a function you need.

    It's known that some things like for_each aren't supported terribly well by the language- that's what lambdas are for in C++0x.

提交回复
热议问题