f0908.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0908.cpp
  3. // test local object create order
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. class A{
  9. public:
  10.   A(){ cout<<"A->"; }
  11. };//------------------------------------
  12. class B{
  13. public:
  14.   B(){ cout<<"B->"; }
  15. };//------------------------------------
  16. class C{
  17. public:
  18.   C(){ cout<<"C->"; }
  19. };//------------------------------------
  20. void func(){
  21.   cout<<"nfunc: ";
  22.   A a;
  23.   static B b;
  24.   C c;
  25. }//--------------------------------------
  26. int main(){
  27.   cout<<"main: ";
  28.   for(int i=1; i<=2; ++i){
  29.     for(int j=1; j<=2; ++j)
  30.       if(i==2) C c; else A a;
  31.     B b;
  32.   }
  33.   func(); func();
  34. }//====================================
  35.