1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#include <iostream.h> class point { public: int x; int y; //构造函数 point() { x=0; y=0; } void output() { cout << x << endl << y << endl; } }; void main() { point pt; pt.output(); } |
转载请注明:exchen's blog » C++ 构造函数