⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 student.cpp

📁 practice c++, it is from the book http://www.amazon.com/Schaums-Outline-Programming-John-Hubbard
💻 CPP
字号:
// Programming with C++ by John R. Hubbard
// Copyright McGraw-Hill 2000
// Example 12.4, page 276
// Composing the Date Class with the Person Class

#include <iostream>
using namespace std;
#include <string>
#include "Date.h"

class Person
{
public:
  Person(char* n="", int s=0, char* nat="U.S.A.")
    : name(n), sex(s), nationality(nat) { }
  void setDOB(int m, int d, int y) { dob.setDate(m, d, y); }
  void setDOD(int m, int d, int y) {dod.setDate(m, d, y); }
  void printName() { cout << name; }
  void printNationality() { cout << nationality; }
  void printDOB() { cout << dob; }
  void printDOD() { cout << dod; }
private:
  string name, nationality;
  Date dob, dod;              // date of birth, date of death
  int sex;                    // 0=female, 1=male
};

class Student : public Person
{
public:
  Student(char* n, int s=0, char* i="")
    : Person(n,s), id(i), credits(0) { }
  void setDOM(int m, int  d, int y) { dom.setDate(m, d, y); }
  void printDOM() { cout << dom; }
private:
  string id;          // student identification number
  Date dom;           // date of matriculation
  int credits;        // course credits
  float gpa;          // grade-point average
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -