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

📄 newdate.h

📁 Since the field of object oriented programming is probably new to you, you will find that there is a
💻 H
字号:
                               // Chapter 7 - Program 9 - NEWDATE.CPP
// 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



// Result of execution
//
// (This file canot be executed)

⌨️ 快捷键说明

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