What's the difference between “STL” and “C++ Standard Library”?

前端 未结 7 739
忘了有多久
忘了有多久 2020-11-21 07:37

Someone brought this article to my attention that claims (I\'m paraphrasing) the STL term is misused to refer to the entire C++ Standard Library instead of the part

7条回答
  •  有刺的猬
    2020-11-21 07:41

    C++ Standard Library includes C++ STL

    The contents of the C++ standard library are:

    1. C++ version of C language header file
    2. C++ IO header file
    3. C++ STL

    So please don’t confuse the C++ standard library with STL.

提交回复
热议问题