fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class CL{
  5. public :
  6. struct{
  7. public :
  8. void test1(){
  9. cout << "test1が実行されました\n";
  10. }
  11.  
  12. struct{
  13. public :
  14. void test2(){
  15. cout << "test2が実行されました\n";
  16. }
  17. }st2;
  18. }st1;
  19. };
  20. int main(){
  21. CL cl;
  22.  
  23. cl.st1.test1();
  24. cl.st1.st2.test2();
  25.  
  26. return 0;
  27. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
test1が実行されました
test2が実行されました