Moral
首页
标签
归档
关于我
Fancy
Moral
Do not let social standards conform you
首页
标签
归档
关于我
Fancy
stl全局
c++
Publish Date: 2022-06-29
Read Count:
C++函数或者命名空间前面加::
函数前面 ::find() 表示这个是全局的函数,不是这个作用域下的函数
比如这里的 ::find()。这个是STL的algorithm中的函数,虽然这里如果不用:: , 编译器没有找到find也会到全局,但是加入会让代码更清晰
jj01::test_array() = 这个就是命名空间
Author:
Moule Lin
Link:
https://moulelin.github.io/2022/06/29/stl%E5%85%A8%E5%B1%80/
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
!
c++
赏
你的赏识是我前进的动力
支付宝
微 信
Previous
vector二维数组
2022-06-30
Moule Lin
c++
Next
红黑树
2022-06-28
Moule Lin
数据结构
TOC
Search