12345678910111213141516171819202122232425262728293031 |
- #include<iostream>
- template<typename T>
- class basic
- {
- public:
- void sent()
- {
- get_T().sent();
- }
- private:
- T& get_T(){return static_cast<T&>(*this);}
- friend T;
- };
- class sent_to_screen:public basic<sent_to_screen>
- {
- public:
- void sent()
- {
- std::cout<<"hello world"<<std::endl;
- }
- };
- int main()
- {
- basic<sent_to_screen> hello;
- hello.sent();
- }
|