newdate.h

来自「含有文章和源码」· C头文件 代码 · 共 22 行

H
22
字号
                                     // Chapter 7 - Program 9
// This class inherits the date class and adds one variable and one
//  method to it.

#ifndef NEWDATE_H
#define NEWDATE_H

#include "date.h"

class new_date : public date {
protected:

   int day_of_year;             // New member variable

public:

   int get_day_of_year(void);   // New method

};

#endif

⌨️ 快捷键说明

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