自考新教材--p179

Posted duanqibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材--p179相关的知识,希望对你有一定的参考价值。

源程序:

#include <iostream>

using namespace std;

class BaseClass

{

public:

  int v1, v2;

  BaseClass()

  {

    v1 = 1;

    v2 = 1;

  }

  int temp1() {}

};

 

class DerivedClass :public BaseClass

{

  int v1;

  int temp1() {}

public:

  DerivedClass()

  {

    v1 = 10;

  }

  void printv()

  {

    cout << "v1=" << v1 << endl;

    cout << "Base.v1=" << BaseClass::v1 << endl;

  }

};

 

int main()

{

  BaseClass bc;

  DerivedClass dc;

  dc.printv();

  system("pause");

  return 0;

}

运行结果:

技术图片

以上是关于自考新教材--p179的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p181

自考新教材-p156

自考新教材-p161

自考新教材-p159

自考新教材-p286

自考新教材-p285