Advertisement
dllbridge

Untitled

Jan 29th, 2025
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.08 KB | None | 0 0
  1.  
  2. #include  <iostream>
  3. using namespace std;
  4.  
  5.  
  6. //////////////////////////
  7. class T
  8. {
  9.      public:  
  10.        int   n1;
  11.        int   n2;
  12.        float  f;
  13.        char   c;
  14.        
  15.        int g_n = 0;
  16.        
  17.        int add();
  18.        
  19.        T();
  20.        
  21.  ////////////////////////////////////////////////
  22.        ~T()
  23.        {
  24.            cout << "GoodBye !\n";
  25.        }    
  26. };
  27.  
  28.  
  29.  
  30.  
  31. ////////////////////////////////////////////////////////
  32. int main()
  33. {
  34.    
  35.     T t1, tArr[2];
  36.  
  37.     T tE;
  38.    
  39.  
  40.    
  41.     cout <<    "n1 = " << t1.n1    << endl;
  42.     cout <<    "n2 = " << t1.n2    << endl;        
  43.     cout << "t1.add() = " << t1.add() << endl;
  44.    
  45. return 0;
  46. }
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56. ////////////////////////////////////////////////
  57.        T::T()
  58.        {
  59.              
  60.              g_n  ++;
  61.              n1 = 100;
  62.              n2 =  12;  
  63.              
  64.              cout << "g_n = " << g_n << "\n";  
  65.                      
  66.        }
  67.  
  68.  
  69.  
  70. ////////////////////////////////////////////////
  71.        int T::add()
  72.        {
  73.            
  74.           return n1 + n2;    
  75.        }
  76.  
  77.  
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement