C++程序设计 第一章 语言基础 命名空间 namespace mycode { void fun(int x) { cout<<x<<" "<<"Hello world!"<<endl; } } ... mycode::fun(5); static_cast double a=3.1415926; int b=static_cast<int>(a); 访问全局/局部变量 int a=7; inline void Case_Test() { double …
Carry
来自于湖南长沙