程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 用指向基類對象的指針輸出數據

用指向基類對象的指針輸出數據

編輯:關於C語言

#include "stdafx.h"

#include<iostream>
#include<string>

using namespace std;

class student{
private:
 int num;
 int age;
 float score;
public:
 student(int ,int ,float);
 void display();
};


//定義構造函數
student::student(int n,int a,float sc):num(n),age(a),score(sc){}

void student::display(){//定義成員函數
 cout<<num<<endl;
 cout<<age<<endl;
 cout<<score<<endl;
}

class graduate:public student{
 private:
  float pay;
 public:
  graduate(int,int,float,float);
  void display();
};
 graduate::graduate(int n,int a,float sc,float p):student(n,a,sc),pay(p){}
 void graduate::display(){
  student::display();
  cout<<pay<<endl;
 }


 int main(){
  student st(12222,22,97.4);
  graduate gr(353543,26,88.2,8000);
  student *pt=&st;
  pt->display();
  pt=&gr;
  pt->display();
  return 0;
 }

輸出結果:

12222
22
97.4


353543
26
88.2
Press any key to continue

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved