CRTP.cpp 394 B

12345678910111213141516171819202122232425262728293031
  1. #include<iostream>
  2. template<typename T>
  3. class basic
  4. {
  5. public:
  6. void sent()
  7. {
  8. get_T().sent();
  9. }
  10. private:
  11. T& get_T(){return static_cast<T&>(*this);}
  12. friend T;
  13. };
  14. class sent_to_screen:public basic<sent_to_screen>
  15. {
  16. public:
  17. void sent()
  18. {
  19. std::cout<<"hello world"<<std::endl;
  20. }
  21. };
  22. int main()
  23. {
  24. basic<sent_to_screen> hello;
  25. hello.sent();
  26. }