当前位置:   article > 正文

C++实验四 运算符重载和虚函数_.对于类mystring,要求重载‘+’运算符后可以计算表达式:a=b+c;表示两个字符串

.对于类mystring,要求重载‘+’运算符后可以计算表达式:a=b+c;表示两个字符串

内容提要

1.对于类MyString,要求重载‘+’运算符后可以计算表达式:a=b+c;表示两个字符串连接。其中a,b,c都是类MyString的对象。
2.使用虚函数编写程序求球体和圆柱体的体积及表面积。由于球体和圆柱体都可以看作由圆继承而来,所以可以定义圆类Circle作为基类。在Circle类中定义一个数据成员radius和两个虚函数area()和volume()。由Circle类派生Sphere类和Column类。在派生类中对虚函数area()和volume()重新定义,分别求球体和圆柱体的体积及表面积。

基本要求

重载相应的运算符并编写程序,能运用虚函数编写程序测试并提交程序。

源程序及运行结果

#include <iostream>
#include <cstring>
#define N 32
 
using namespace std;
 
class MyString
{
	char *d;
	int len;
public:
	MyString() { d = new char[N]; len = 0; }
	MyString(const char* a);
	MyString& operator + (MyString & a);
	MyString& operator + (char * a);
	MyString& operator + (const char *a);
 
	MyString& operator = (MyString & a);
	MyString& operator = (char * a);
	MyString& operator = (const char *a);
 
	int strLen(void) { return len; }
	char * D(void) { return d; }
	friend ostream & operator << (ostream &os, MyString &a);
};
 
MyString::MyString(const char *a)
{
	d = new char[strlen(a) + 1];
	strcpy(d, a);
	len = strlen(a);
}
 
MyString& MyString::operator + (MyString & a)
{
	if (len + a.strLen() > (N - 1))
	{
		char *tmp = new char[len + a.strLen() + 1];
		strcpy(tmp, d);
		strcat(tmp, a.D());
		d = tmp;
	}
	else
	{
		strcat(d, a.D());
	}
	len += a.strLen();
	return *this;
}
 
MyString& MyString::operator + (char * a)
{
	if (len + strlen(a) > (N - 1))
	{
		char *tmp = new char[len + strlen(a) + 1];
		strcpy(tmp, d);
		strcat(tmp, a);
		d = tmp;
	}
	else
	{
		strcat(d, a);
	}
	len += strlen(a);
	return *this;
}
 
MyString& MyString::operator + (const char *a)
{
	if (len + strlen(a) > (N - 1))
	{
		char *tmp = new char[len + strlen(a) + 1];
		strcpy(tmp, d);
		strcat(tmp, a);
		d = tmp;
	}
	else
	{
		strcat(d, a);
	}
	len += strlen(a);
	return *this;
}
 
MyString& MyString::operator = (MyString & a)
{
	if (&a != this && len > 0 && len < a.strLen())
	{
		delete[] d;
		d = new char[a.strLen() + 1];
	}
	strcpy(d, a.D());
	len = a.strLen();
	return *this;
}
 
MyString& MyString::operator = (char * a)
{
	if (d != NULL && len < strlen(a))
	{
		delete[] d;
		d = new char[strlen(a) + 1];
	}
	strcpy(d, a);
	len = strlen(a);
	return *this;
}
 
 
 
MyString& MyString::operator = (const char *a)
{
	if (d != NULL && len < strlen(a))
	{
		delete[] d;
		d = new char[strlen(a) + 1];
	}
	strcpy(d, a);
	len = strlen(a);
	return *this;
}
 
ostream & operator << (ostream &os, MyString &a)
{
	os << a.D();
	return os;
}
 
 
 
int main(void)
{
	MyString str("我从海边来 ");
	str = str + "深蓝的是天";
	cout << str << endl;
 
	str = str + " 浅蓝的是水 灰蓝的是海岸线";
	cout << str << endl;
 
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141

在这里插入图片描述

#include <iostream>
#define P 3.1415
using namespace std;
 
class Circle
{
	protected:
		double radius;
	public:
		virtual double area(void) = 0;
		virtual double volume(void) = 0;
};
 
class Sphere :public Circle
{
	public:
		Sphere(double r = 0) { radius = r; }
		virtual double area(void)
		{
			return 4.0 * P * radius * radius;
		}
		virtual double volume(void)
		{
			return (4.0 / 3.0) * P * radius * radius * radius;
		}
};
 
class Column :public Circle
{
	private:
		double high;
	public:
		Column(double r = 0, double h = 0) { radius = r; high = h; }
		virtual double area(void)
		{
			if (0 == high)
			{
				return P * radius * radius;
			}
			return 2.0* P * radius * radius + P * 2.0 * radius * high;
		}
		virtual double volume(void)
		{
			if (0 == high)
			{
				return 0;
			}
		return P * radius * radius * high;
		}
};
 
int main(void)
{
	double rS, rC, h;
	while (1)
	{
		cout << "请输入球体的半径:";
		cin >> rS;
		if (rS <= 0)
		{
			cout << "数据错误!\n\n";
		}
		else
			break;
	}
 
	while (1)
	{
		cout << "请输入圆柱体的半径:";
		cin >> rC;
		if (rC <= 0)
		{
			cout << "数据错误!\n\n";
		}
		else
			break;
	}
 
	while (1)
	{
		cout << "请输入圆柱体的高:";
		cin >> h;
		if (h <= 0)
		{
			cout << "数据错误!\n\n";
		}
		else
			break;
	}
 
	Sphere sphere(rS);
	Column column(rC, h);
	cout << "球体的半径为:" << rS << endl
		 << "球体的表面积为:" << sphere.area() << endl
		 << "球体的体积为:" << sphere.volume() << endl << endl;
	cout << "圆柱体的半径为:" << rC << endl
		 << "圆柱体的表面积为:" << column.area() << endl
	 	<< "圆柱体的体积为:" << column.volume() << endl << endl;
 
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/806844
推荐阅读
相关标签
  

闽ICP备14008679号