C++ (main.cpp):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <iostream> using namespace std; class mother { public : void hello() { cout << "Hello." << endl; } }; class child : public mother { // }; void main() { child say; say.hello(); } |
child繼承mother的基礎範例。
沒有留言:
張貼留言