1条回答 默认 最新
- CSDN专家-showbo 2021-10-24 22:34关注
1
using System; namespace ConsoleApp1 { public class Employee { public string num { get; set; } public string name { get; set; } public string department { get; set; } public Employee(string num, string name, string department) { this.num = num; this.name = name; this.department = department; } } public class Employee1 : Employee { public double salary { get; set; } public double bonus { get; set; } public Employee1(string num, string name, string department, double salary, double bonus) : base(num, name, department) { this.salary = salary; this.bonus = bonus; } public double GetTotal() { return salary + bonus; } public new string ToString() { return string.Format("({0}、{1}、{2})总输入:{3}",num,name,department,GetTotal()); } } class MainClass { static void Main(string[] args) { var e = new Employee1("2009532", "张三", "开发部", 1080, 500); Console.WriteLine(e.ToString()); Console.ReadKey(); } } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 2无用
悬赏问题
- ¥15 Linux系统的命令行窗口回车变成了换行,无法执行命令了
- ¥15 vb6.0调用ImageMagick进行图片转换问题
- ¥15 安卓组件化工程引入Arouter报错there's no route matched path[/login/LoginActivity,如何解决?
- ¥50 如何进行点云姿态调整优化
- ¥20 关于c++的问题 如何用qt完成
- ¥15 台达变频器MS300与伺服驱动器B3系列的抱闸与电路设计如何实现
- ¥20 C++通过HICON获取argb像素数组
- ¥15 如何利用支持向量机提高分类器正确率和筛选理想分类器
- ¥15 Pygame坦克大战游戏开发实验报告
- ¥15 用vmmare虚拟机用sentaurus仿真的时候,调用terminal程序,输入swb指令弹出这个,打不开workbench,桌面上面的sentaurus workbench也打不开