stl全局


C++函数或者命名空间前面加::

  • 函数前面 ::find() 表示这个是全局的函数,不是这个作用域下的函数

    比如这里的 ::find()。这个是STL的algorithm中的函数,虽然这里如果不用:: , 编译器没有找到find也会到全局,但是加入会让代码更清晰

  • jj01::test_array() = 这个就是命名空间

Author: Moule Lin
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source Moule Lin !
  TOC