fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class TEST
  5. {
  6. public:
  7. TEST()
  8. {
  9. std::cout << "2.クラスです" <<std::endl;
  10. }
  11. };
  12.  
  13. int main(void)
  14. {
  15. std::cout << "1.メインです" << std::endl;
  16. return 0;
  17. }
  18.  
  19. TEST test;
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
2.クラスです
1.メインです