fork(5) download
  1. #include<iostream>
  2.  
  3. using namespace std;
  4.  
  5. class Dialog {
  6. public:
  7. int a;
  8. int color;
  9. void Close() {}
  10. };
  11.  
  12. int main()
  13. {
  14. // 멤버 변수의 포인터 만들기.
  15. int Dialog::*p = &Dialog::color;
  16. printf("%d\n", p); // 0
  17. Dialog dlg;
  18. dlg.*p = 10; // dlg.color = 10 으로 컴파일.
  19. printf("%d\n", dlg.color); // 0
  20. }
  21.  
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
4
10