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

📄 dog.h

📁 这是一个dos版的应用程序
💻 H
字号:
// ***************************************************************
//  dog   version:  1.0   ? date: 12/03/2006
//  -------------------------------------------------------------
//  dog.h
//  -------------------------------------------------------------
//  Copyright (C) 2006 - All Rights Reserved
// ***************************************************************
// 
// ***************************************************************
#include "animal.h"
#include <string.h>
//-------------------------------------------------------------
#ifndef _DOG_H_
#define _DOG_H_
//-------------------------------------------------------------
class Dog:public Animal{  //包括类型、颜色、体重和喜爱的食物
public:
	Dog(){}
	Dog(char* t ,char* c,char* f ,int w){
		strcpy(s_Type,t);
		strcpy(s_Color,c);
		strcpy(s_Food,f);
		n_Weight=w;
	}
//	~Dog()
//	{
//		cout<<"Dog destructor!"<<endl;
///	}
	 void ShowMe();
};
//------------------------------------------------------------
#endif

⌨️ 快捷键说明

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