第十二章编程练习(1)

COW.H
#pragma once
#ifndef COW_H_
#define COW_H_
class Cow {
private:
	char name[20];
	char * hobby;
	double weight;
public:
	Cow();
	Cow(const char * nm, const char * ho, double wt);
	Cow(const Cow & c);
	~Cow();
	Cow & operator =(const Cow & c);
	void ShowCow()const;//display all data
};
#endif
function.cpp
#include "COW.h"
//#include <string>
#include <iostream>
Cow::Cow()
{
	name[0] = '\0';
	hobby = new char[1];
	*hobby = '\0';//初始化指针指向内容,不可或缺
	weight = 0.0;
}
Cow::~Cow()
{
	delete[]hobby;
}
Cow::Cow(const char * nm, const char * ho, double wt)
{
	strcpy(name, nm);
	int len = std::strlen(ho);
	hobby = new char[len + 1];
	std::strcpy(hobby, ho);
	weight = wt;
}
Cow::Cow(const Cow & c)
{
	strcpy(name, c.name);
	int len = std::strlen(c.hobby);
	hobby = new char[len + 1];
	std::strcpy(hobby, c.hobby);
	weight = c.weight;
}
Cow & Cow::operator=(const Cow & c)
{
	strcpy(name, c.name);
	if (this == &c)
		return *this;
	delete[]hobby;
	int len = std::strlen(c.hobby);
	hobby = new char[ len + 1];
	std::strcpy(hobby, c.hobby);
	weight = c.weight;
	return *this;
}
void Cow::ShowCow() const
{
	using std::cout;
	using std::endl;
	cout << "name:" << name << endl;
	cout << "hobby:" << hobby << endl;
	cout << "weight:" << weight << endl << endl;

}
main.cpp()
#include "COW.h"
#include <iostream>
#include <cstdlib>
int main()
{
	Cow co;
	Cow wo ("Hello Kity","Jackson Wei",50);
	co.ShowCow();
	wo.ShowCow();
	co = wo;
	co.ShowCow();
	Cow xo("Mikko", "Sam", 20);
	Cow to(xo);
	to.ShowCow();
	system("pause");
	return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值