设计一个Person类C#
时间: 2023-06-02 22:06:16 浏览: 131
Person类可以包含以下属性:姓名、年龄、性别、职业、国籍等。可以为该类添加以下方法:设置姓名、设置年龄、设置性别、设置职业、设置国籍、获取姓名、获取年龄、获取性别、获取职业、获取国籍等。此外,还可以添加其他适合的方法,例如计算年龄、显示个人信息等。
相关问题
设计一个Person类C#包含以下属性:姓名、年龄、性别、职业
Person类C的设计如下:
属性:
- name:人名,字符串类型
- age:年龄,整数类型
- gender:性别,字符串类型
- height:身高,浮点数类型
- weight:体重,浮点数类型
方法:
- introduce:介绍自己的姓名、年龄、性别、身高和体重
- eat:吃东西,参数为食物的名称和重量,会更新体重
- exercise:锻炼身体,参数为锻炼方式和时间,会更新身高
代码示例:
```python
class Person:
def __init__(self, name, age, gender, height, weight):
self.name = name
self.age = age
self.gender = gender
self.height = height
self.weight = weight
def introduce(self):
print(f"我叫{self.name},今年{self.age}岁,是个{self.gender},身高{self.height}米,体重{self.weight}公斤。")
def eat(self, food_name, food_weight):
print(f"我在吃{food_name},重量是{food_weight}克。")
self.weight += food_weight
def exercise(self, exercise_type, exercise_time):
print(f"我在{exercise_time}分钟内进行了{exercise_type}的运动。")
self.height += exercise_time / 60
```
可以使用以下代码创建一个Person对象并调用其方法:
```python
person = Person("小明", 20, "男", 1.75, 65)
person.introduce()
person.eat("米饭", 500)
person.introduce()
person.exercise("跑步", 30)
person.introduce()
```
输出结果为:
```
我叫小明,今年20岁,是个男,身高1.75米,体重65公斤。
我在吃米饭,重量是500克。
我叫小明,今年20岁,是个男,身高1.75米,体重65.5公斤。
我在30分钟内进行了跑步的运动。
我叫小明,今年20岁,是个男,身高1.7583333333333333米,体重65.5公斤。
```
c#设计一个人类Person,有一个虚方法Getperson(),输出“这是基类Person”,然后设计子类;医生类,并重写基类的虚方法,输出“这是医生类”,教师类Teacher,并重写基类的虚方法,输出“这是教师类”。分别建立每个类的对象,分别输出各对象的信息
好的,以下是 C# 代码实现:
```c#
using System;
public class Person
{
public virtual void Getperson()
{
Console.WriteLine("这是基类Person");
}
}
public class Doctor : Person
{
public override void Getperson()
{
Console.WriteLine("这是医生类");
}
}
public class Teacher : Person
{
public override void Getperson()
{
Console.WriteLine("这是教师类");
}
}
class Program
{
static void Main(string[] args)
{
Person p_person = new Person();
Doctor p_doctor = new Doctor();
Teacher p_teacher = new Teacher();
p_person.Getperson();
p_doctor.Getperson();
p_teacher.Getperson();
}
}
```
输出结果为:
```
这是基类Person
这是医生类
这是教师类
```
和 C++ 实现相似,这个例子中,Person 是基类,Doctor 和 Teacher 是 Person 的子类。每个类都实现了 Getperson() 方法,并且 Doctor 和 Teacher 重写了基类 Person 中的虚方法 Getperson(),以便输出不同的信息。
在主函数中,我们创建了一个 Person 对象、一个 Doctor 对象和一个 Teacher 对象,并依次调用它们的 Getperson() 方法,输出了不同的结果。
阅读全文