fork(4) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct MyQuestion
  5. {
  6. void fun()
  7. { cout<<"a"; }
  8.  
  9. void fun()const
  10. { cout<<"b"; }
  11.  
  12. void call()
  13. {
  14. const auto *c = this;
  15. c->fun(); // calls fun() const
  16.  
  17. fun(); // calls fun()
  18. }
  19. };
  20.  
  21. int main() {
  22. MyQuestion q;
  23. q.call();
  24. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
ba