摘要: :: 代表作用域 如果前面什么都不加 代表全局作用域 例如:如下的std::cout代表的是全局作用域中的std作用域 #include<iostream> int a=100; void func(int* x) { int* b = &a; *x = a; std::cout <<"x:"<< 阅读全文
posted @ 2020-12-31 10:36 PYozo_free 阅读(226) 评论(0) 推荐(0) 编辑