-
namespace 命名空间查看全部
-
#include <iostream> #include <stdio.h> using namespace std; namespace compA { int getMaxOrMin(int *arr,int count ,bool isMax) { int temp=arr[0]; for(int i=1;i<count;i++) { if(isMax) { if(temp<arr[i]) { temp=arr[i]; } } else { if(temp>arr[i]) { temp=arr[i]; } } } return temp; } } //using namespace compA; int main(void) { int arr1[4]={2,5,4,9}; cout<<"求最大值请输入1,求最小值请输入0"<<endl; bool isMax =false; cin>>isMax; cout<<compA::getMaxOrMin(arr1,4,isMax)<<endl; system("pause"); return 0; }查看全部
-
#include <iostream> #include <stdio.h> //using namespace std; namespace A { int x=1; void fun() { std::cout<<"A"; } } namespace B { int x=2; void fun() { std::cout<<"B"<< std::endl; } void fun2() { std::cout<<"fun2"<< std::endl; } } using namespace B; int main(void) { std::cout<<A::x<< std::endl; B::fun(); fun2(); system("pause"); return 0; }查看全部
-
命名空间的名字是不可以重复的查看全部
-
*命名空间:划片取名字 关键字:namespace namespace A { int x=0; void f1(); void f2(); } namespace B { int x=0; void f1(); void f3(); } cout<<A::x<<endl; B::f1();查看全部
-
cout<<"请输入一个整数:"<<endl; int x=0; cin>>x; cout<<"八进制"<<oct<<x<<endl; cout<<"十进制"<<dec<<x<<endl; cout<<"十六进制"<<hex<<x<<endl; cout<<"请输入一个布尔值(0,1):"<<endl; bool y=false; cin>>y; cout<<boolalpha<<y<<endl; cout<<"hello c++"<<endl; system("pause"); return 0;查看全部
-
zuizhi查看全部
-
namespace 的应用查看全部
-
C++随用定理查看全部
-
定义A,B的命名空间后想要用A的变量x和B的函数f1查看全部
-
命名空间的定义查看全部
-
C++中八进制、十进制、十六进制的输出查看全部
-
命名空间(namespace):查看全部
-
随用随定义查看全部
-
C和C++初始化比较查看全部
举报
0/150
提交
取消