]]>re: 閫氳繃鎸囬拡璁塊棶綾葷殑縐佹湁鏁版嵁鎴愬憳http://www.shnenglu.com/iwong/archive/2008/08/10/58440.html#58444AlexEricAlexEricSun, 10 Aug 2008 07:01:00 GMThttp://www.shnenglu.com/iwong/archive/2008/08/10/58440.html#58444 5 class A
6 {
7 private:
8 // a & b are private members of class A
9 int a;
10 double b;
11 public:
12 // initialize a & b as value 0
13 A() : a(0), b(0) {}
14
15 public:
16 // for display the value of a & b
17 int GetA();
18 double GetB();