BananaAllergyMonkey
BananaAllergyMonkey
全部文章
读书笔记
未归档(5)
归档
标签
去牛客网
登录
/
注册
BananaAllergyMonkey
燃烧我的卡路里
全部文章
/ 读书笔记
(共2篇)
const_cast和static_cast的使用
对于如下代码 class A{ public: const char& openrator[](size_t position) const{ //... return text[position]; } char& o...
2019-09-13
0
0
explicit关键字的作用
class A{ public: A(); }; class B{ public: explicit B(int x = 0,bool b = true); }; void doSomething(B bObject){ //... }; doSomething(28)...
2019-09-13
0
767