ch12_1.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch12_1.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. class Desk{
  6. public:
  7.   Desk();          //构造函数声明
  8. protected:
  9.   int weight;
  10.   int high;
  11.   int width;
  12.   int length;
  13. };
  14. class Stool{
  15. public:
  16.   Stool();    //构造函数声明
  17. protected:
  18.   int weight;
  19.   int high;
  20.   int width;
  21.   int length;
  22. };
  23. Desk::Desk()    //构造函数定义
  24. {
  25.   weight=10;
  26.   high=5;
  27.   width=5;
  28.   length=5;
  29.   cout <<weight <<" " <<high <<" "        <<width <<" " <<length <<endl; }
  30. Stool::Stool()    //构造函数定义
  31. {
  32.   weight=6;
  33.   high=3;
  34.   width=3;
  35.   length=3;
  36.   cout <<weight <<" " <<high <<" "        <<width <<" " <<length <<endl; }
  37. void fn()
  38. {
  39.   Desk da;    //自动调用Desk()
  40.   Stool sa;   //自动调用Stool()
  41. }
  42. void main()
  43. {
  44.   fn();
  45. }