Advertisement
Redee

Выделение памяти Стат. переменной в точке входа, КАК ??

Oct 25th, 2015
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. //ы
  2.  
  3. #include <iostream>
  4. using namespace std;
  5.  
  6. struct A
  7. {
  8.     static int n;
  9.     void setN(int num){ n = num; }
  10.     void showN(){ cout << n << endl; }
  11. };
  12. // чтобы это делать НЕ тут, а динамически в main() !!
  13. int A::n;
  14.  
  15. void main()
  16. {
  17.     A a;
  18.     a.showN();
  19.     a.setN(22);
  20.     a.showN();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement