12---1

//Cow.h
#ifndef COW_H
#define COW_H

#include<iostream>

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);

	friend std::ostream& operator<<(std::ostream& os, const Cow& c);
};

#endif // !COW_H
//Cow.cpp
#include<cstring>
#include "Cow.h"

Cow::Cow()
{
	std::strcpy(name, "unknown");
	name[7] = '\0';
	hobby = new char[1];
	hobby[0] = '\0';
	weight = 0.0;
}

Cow::Cow(const char* nm, const char* ho, double wt)
{
	std::strcpy(name, nm);
	hobby = new char[strlen(ho) + 1];
	std::strcpy(hobby, ho);
	weight = wt;
}

Cow::Cow(const  Cow& c)
{
	std::strcpy(name, c.name);
	hobby = new char[strlen(c.hobby) + 1];
	std::strcpy(hobby, c.hobby);
	weight = c.weight;
}

Cow::~Cow()
{
	delete[]hobby;
}

Cow& Cow::operator=(const Cow& c)
{
	if (this == &c)
	{
		return *this;
	}

	std::strcpy(name, c.name);
	hobby = new char[strlen(c.hobby) + 1];
	std::strcpy(hobby, c.hobby);
	weight = c.weight;

	return *this;
}

std::ostream& operator<<(std::ostream& os, const Cow& c)
{
	os << "Name: ";
	for (int i = 0; c.name[i] != '\0' && i < 19; i++)
	{
		os << c.name[i];
	}
	os << '\n';
	os << "Hobby: " << c.hobby << '\n'
		<< "Weight: " << c.weight << '\n';

	return os;
}
//usecow.cpp
#include<iostream>
#include"Cow.h"

using std::cout;

int main()
{
	Cow one("Tom", "sax", 35.6);
	cout << one;

	Cow two;
	cout << two;

	Cow three = one;
	cout << three;

	Cow four("Amy", "singing", 42.3);
	four = one;
	cout << four;

	return 0;
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值