aijava

welcome to my online log ! open java new world! Taste java charm........
posts - 1, comments - 4, trackbacks - 0, articles - 42
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

C++一个基类

Posted on 2006-11-12 23:31 阅读(134) 评论(0)  编辑  收藏 所属分类: C++学习资料
#include <iostream>
using namespace std;

class BaseClass {
  int i, j;
public:
  BaseClass(int x, int y) { 
     i = x; 
     j = y; 
  }
  void showij() { 
  
     cout << i << ' ' << j << '\n'
  }
};

class DerivedClass : public BaseClass {
  int k;
public:
  DerivedClass(int a, int b, int c: BaseClass(b, c) {
    k = a;
  }
  void show() { 
    cout << k << ' '; showij()
  }
};

int main()
{
  DerivedClass ob(123);

  ob.show();

  return 0;
}
http://freehost13.websamba.com