服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - C#实现简单的汽车租赁系统

C#实现简单的汽车租赁系统

2021-11-21 15:40天尽头的那片海 C#

这篇文章主要为大家详细介绍了C#实现汽车租赁系统的具体实现代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

最近学习了继承,多态,集合,设计模式,有一个汽车租凭系统,给大家分享一下:

我们首先来看看我们这个系统的效果

C#实现简单的汽车租赁系统

C#实现简单的汽车租赁系统

C#实现简单的汽车租赁系统

1.做一个项目,我们首先对项目进行分析

根据我们最近学的知识,我们可以看出继承,多态,集合,设计模式,我们都能用到

我们把所需要的类和简单模式中的“简单工厂”的工厂准备好

 类图:

C#实现简单的汽车租赁系统

01.车辆类(父类)

 

?
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
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
 
namespace 汽车租赁系统
{
 // 车辆类 父类
 public abstract class vehicle
 {
  //属性
  //车牌号
  public string licenseno { get; set; }
  
  //车名
  public string name { get; set; }
  //颜色
  public string color { get; set; }
  //使用时间
  public int rentdate { get; set; }
  //使用人
  public string rentuser { get; set; }
  //日租金
  public double dailyrent { get; set; }
  //还车日期
  public int returndate { get; set; }
 
  public vehicle() { }
  //构造
  public vehicle(string liceseno,string name,string color,int rentdate,double dailyrent)
  {
   this.color = color;
   this.dailyrent = dailyrent;
   this.licenseno = liceseno;
   this.name = name;
   this.rentdate = rentdate;
 
  }
 
  //计算价格的虚方法
  public abstract double getnum();
  
 }
}

02.子类汽车类   (继承 车辆类 父类)

 

?
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
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
 
namespace 汽车租凭系统
{
 //汽车类 子类
 public class car:vehicle
 {
  public car() { }
  //构造
  public car(string licenseno, string name, string color, int rentdate, double dailyrent)
   : base(licenseno, name, color, rentdate, dailyrent)
  { }
  //重写父类计算价格的方法
  public override double getnum()
  {
   //日租金*租的天数
   double result = this.dailyrent * this.returndate;
   return result;
  }
 }
}

03.子类卡车类 继承 车辆类 父类

 

?
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
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
 
namespace 汽车租凭系统
{
 //子类
 public class truck:vehicle
 {
  //载重
  public int load { get; set; }
 
  public truck() { }
 
  //构造
  public truck(string licenseno,string name,string color,int rentdate,double dailyrent,int load )
   :base(licenseno,name,color,rentdate,dailyrent )
  {
   this.load = load;
  }
 
  //重写父类计算价格的方法
  public override double getnum()
  {
   //日租金*租的天数
   double result = this.dailyrent * this.returndate;
   return result;
  }
 }
}

 04.“简单工厂”的工厂类

说这个工厂类,就是为了在新车入库的时候,可以知道它是轿车还是卡车,实例化不同的对象,方便使用

 

?
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
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
 
namespace 汽车租赁系统
{
 //工厂类
 public class vehiclefactory
 {
  //带参静态方法
  public static vehicle carteshow(string liceseno, string name, string color, int rentdate, double dailyrent, int load,string type)
  {
   //初始化父类对象
   vehicle vehicle = null;
   switch (type)
   {
    //根据传来的值,实例化对应的对象
    case"卡车":
     vehicle = new truck(liceseno, name, color, rentdate, dailyrent, load);
     break;
    case"轿车":
     vehicle = new car(liceseno, name, color, rentdate, dailyrent);
     break;
   }
   //返回实例化对象
   return vehicle;
  
  
  }
 }
}

2. 剩下的就是对主窗体的功能进行实现

其实租车和还车的核心就是两个集合之间的交互

新车入库就是使用“简单工厂”的设计模式进行对应添加

其中有个我们以前没见过的控件tabcontrol

C#实现简单的汽车租赁系统

 

?
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.linq;
using system.text;
using system.threading.tasks;
using system.windows.forms;
 
 
namespace 汽车租赁系统
{
 public partial class frmmain : form
 {
  public frmmain()
  {
   initializecomponent();
  }
  //保存可租车辆的集合
  dictionary<string, vehicle> vehicles=new dictionary<string,vehicle>();
  //保存租出车的集合
  dictionary<string, vehicle> rentvehicles=new dictionary<string,vehicle>();
 
  //动态加载listview的方法
  public void new(dictionary<string,vehicle> list,listview lvlist)
  {
   listviewitem listview = null;
   lvlist.items.clear();
   foreach (vehicle item in list.values)
   {
    if (item is car)
    {
     listview = new listviewitem();
     listview.text = item.licenseno;
     listview.subitems.add(item.name);
     listview.subitems.add(item.color);
     listview.subitems.add(item.rentdate.tostring());
     listview.subitems.add(item.dailyrent.tostring());
    }
    else if (item is truck)
    {
     listview = new listviewitem();
     listview.text = item.licenseno;
     listview.subitems.add(item.name);
     listview.subitems.add(item.color);
     listview.subitems.add(item.rentdate.tostring());
     listview.subitems.add(item.dailyrent.tostring());
     listview.subitems.add(((truck)item).load.tostring());
    }
    lvlist.items.add(listview);
   }
   
  }
 
  //准备可租车辆
  public void intitle()
  {
   
   truck truck = new truck("京a111","奥迪","红色",3,240,10);
   car car = new car("京a222", "宝马", "黑色", 3, 240);
 
   vehicles.add(truck.licenseno,truck);
   vehicles.add(car.licenseno, car);
   //加载数据
   new(vehicles,lvlist);
   
  }
  private void frmmain_load(object sender, eventargs e)
  {
   intitle();
  }
  //点击租车触发的事件
  private void btn_zu_click(object sender, eventargs e)
  {
   if(lvlist.selecteditems.count==0)
   
   {
    messagebox.show("请选中一行!");
    return;
   }
   if (txt_name.text=="")
   {
    messagebox.show("请输入姓名!");
    return;
 
   }
   //执行租车.
   //获取车牌号的值
   string carnum = lvlist.selecteditems[0].text;
   vehicle ve= vehicles[carnum];
 
   //直接把获得要租的信息放入rentvehicles集合
 
   rentvehicles.add(carnum,ve);
 
   //删除原来的集合
   vehicles.remove(carnum);
 
   //重新加载
   new(vehicles,lvlist);
   messagebox.show("租车成功");
 
  }
 
  private void button1_click(object sender, eventargs e)
  {
   //加载已出租车辆信息
   new(rentvehicles,lvlist_huan);
   
  }
 
  private void btn_ji_click(object sender, eventargs e)
  {
   if (txt_day.text=="")
   {
    messagebox.show("请输入天数");
    return;
   }
 
   if (lvlist_huan.selecteditems.count==0)
   {
    messagebox.show("请选择一行");
    return;
   }
   //获取车牌号的值
   string carnum1 = lvlist_huan.selecteditems[0].text;
   vehicle ve = rentvehicles[carnum1];
 
  
   //获取租的天数
   int num = convert.toint32(txt_day.text);
   ve.returndate = num;
   double money=ve.getnum();
   dialogresult result= messagebox.show("你要支付"+money+"元","提示",messageboxbuttons.okcancel,messageboxicon.question);
   if (result==dialogresult.ok)
   {
    //直接把获得要还的信息放入vehicles集合
    vehicles.add(carnum1, ve);
 
    //删除原来的集合
    rentvehicles.remove(carnum1);
 
    //重新加载
    new(rentvehicles, lvlist_huan);
    messagebox.show("还车成功");
   }
   
 
  }
  //刷新按钮
  private void btn_new_click(object sender, eventargs e)
  {
   //重新加载
   new(vehicles, lvlist);
  }
  //判断填写是否正确的方法
  public bool good()
  {
   bool flag = true;
   if (txt_id.text==""||txt_xing.text==""||cmb_color.text==""||txt_time.text==""||txt_money.text==""||txt_zhong.text==""|| rdb_jiao.text=="")
   {
    flag = false;
 
   }
   return flag;
  }
  //入库按钮点击事件
  private void btn_ruku_click(object sender, eventargs e)
  {
   if (good())//判断填写是否正确
   {
 
    foreach (string item in vehicles.keys)
    {
     if (txt_id.text==item)
     {
      messagebox.show("此车牌已经有库存了,请你确认!");
      return;
     }
    }
    //使用"简单工厂"
    vehicle ve = null;
    if (rdb_jiao.checked == true)
    {
     ve = vehiclefactory.carteshow(txt_id.text, txt_xing.text, cmb_color.text,convert.toint32(txt_time.text), convert.todouble(txt_money.text), convert.toint32(txt_zhong.text), rdb_jiao.text);
 
    }
    else
    {
     ve = vehiclefactory.carteshow(txt_id.text, txt_xing.text, cmb_color.text, convert.toint32(txt_time.text), convert.todouble(txt_money.text), convert.toint32(txt_zhong.text), rdb_ka.text);
 
    }
    //添加集合
    vehicles.add(txt_id.text, ve);
    messagebox.show("入库成功");
 
    //清空所要填的值选项
    txt_id.text="";
    txt_xing.text="";
    cmb_color.text="";
    txt_time.text="";
    txt_money.text= "";
    txt_zhong.text = "";
   }
   else
   {
 
    messagebox.show("请完善信息的填写!");
   }
   
 
  }
  //选择不同的按钮
  private void rdb_jiao_checkedchanged(object sender, eventargs e)
  {
   if (rdb_jiao.checked==true)
   {
    lab_zhong.forecolor = color.red;
    txt_zhong.enabled = false;
   }
   else
   {
    lab_zhong.forecolor = color.black;
    txt_zhong.enabled = true;
   }
  }
 }
}

我们来分类看看其中的魅力代码:

1.租车的界面功能

01.租车按钮 

 

?
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
//点击租车触发的事件
  private void btn_zu_click(object sender, eventargs e)
  {
   //确保选中一行
   if(lvlist.selecteditems.count==0)
   
   {
    messagebox.show("请选中一行!");
    return;
   }
   //确保有人租车
   if (txt_name.text=="")
   {
    messagebox.show("请输入姓名!");
    return;
 
   }
   //执行租车.
   //获取车牌号的值
   string carnum = lvlist.selecteditems[0].text;
   //根据车牌号获得此车对象
   vehicle ve= vehicles[carnum];
 
   //直接把获得要租的信息放入rentvehicles集合
 
   rentvehicles.add(carnum,ve);
 
   //删除原来的集合
   vehicles.remove(carnum);
 
   //重新加载
   new(vehicles,lvlist);
   messagebox.show("租车成功");

02.刷新按钮

?
1
2
3
4
5
6
//刷新按钮
  private void btn_new_click(object sender, eventargs e)
  {
   //重新加载
   new(vehicles, lvlist);
  }

这里的刷新定义了一个方法,也就是动态加载listview的方法(nuw方法)

这个方法有两个参数,第一个参数传入车辆类型集合对象,第二个传入listview的名字

这样的作用就是在租车和还车时都能使用此方法进行刷新,岂不妙哉!

?
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
//动态加载listview的方法
 public void new(dictionary<string,vehicle> list,listview lvlist)
 {
  //初始化listviewitem对象
  listviewitem listview = null;
   //清除listview,以免有冲突的值
  lvlist.items.clear();
  foreach (vehicle item in list.values)
  {
   //判断赋值
   if (item is car)
   {
    listview = new listviewitem();
    listview.text = item.licenseno;
    listview.subitems.add(item.name);
    listview.subitems.add(item.color);
    listview.subitems.add(item.rentdate.tostring());
    listview.subitems.add(item.dailyrent.tostring());
   }
   else if (item is truck)
   {
    listview = new listviewitem();
    listview.text = item.licenseno;
    listview.subitems.add(item.name);
    listview.subitems.add(item.color);
    listview.subitems.add(item.rentdate.tostring());
    listview.subitems.add(item.dailyrent.tostring());
    listview.subitems.add(((truck)item).load.tostring());
   }
   //关联
   lvlist.items.add(listview);
  }
  
 }

2.还车的界面功能

01.选择结算按钮

 

?
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
private void btn_ji_click(object sender, eventargs e)
 {
  //确保 是否输入天数
  if (txt_day.text=="")
  {
   messagebox.show("请输入天数");
   return;
  }
  //确保是否选中一行
  if (lvlist_huan.selecteditems.count==0)
  {
   messagebox.show("请选择一行");
   return;
  }
  //获取车牌号的值
  string carnum1 = lvlist_huan.selecteditems[0].text;
   //根据车牌号获得对应的车辆对象
  vehicle ve = rentvehicles[carnum1];
 
  //获取租的天数
  int num = convert.toint32(txt_day.text);
  //给属性使用天数赋值
  ve.returndate = num;
  //调用计算方法(多态的应用)
  double money=ve.getnum();
  dialogresult result= messagebox.show("你要支付"+money+"元","提示",messageboxbuttons.okcancel,messageboxicon.question);
  if (result==dialogresult.ok)
  {
   //直接把获得要还的信息放入vehicles集合
   vehicles.add(carnum1, ve);
 
   //删除原来的集合
   rentvehicles.remove(carnum1);
 
   //重新加载
   new(rentvehicles, lvlist_huan);
   messagebox.show("还车成功");
  }
  
 
 }

02.刷新按钮(调用租车时写的方法)

?
1
2
3
4
5
6
private void button1_click(object sender, eventargs e)
  {
   //加载已出租车辆信息
   new(rentvehicles,lvlist_huan);
   
  }

3.新车入库界面功能

01.入库按钮

?
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
//入库按钮点击事件
 private void btn_ruku_click(object sender, eventargs e)
 {
  if (good())//判断填写是否正确
  {
    //车牌号是唯一的,不能重复添加已有的车牌号
   foreach (string item in vehicles.keys)
   {
    if (txt_id.text==item)
    {
     messagebox.show("此车牌已经有库存了,请你确认!");
     return;
    }
   }
   //使用"简单工厂",进行对应添加
   vehicle ve = null;
   if (rdb_jiao.checked == true)
   {
    ve = vehiclefactory.carteshow(txt_id.text, txt_xing.text, cmb_color.text,convert.toint32(txt_time.text), convert.todouble(txt_money.text), convert.toint32(txt_zhong.text), rdb_jiao.text);
 
   }
   else
   {
    ve = vehiclefactory.carteshow(txt_id.text, txt_xing.text, cmb_color.text, convert.toint32(txt_time.text), convert.todouble(txt_money.text), convert.toint32(txt_zhong.text), rdb_ka.text);
 
   }
   //添加集合
   vehicles.add(txt_id.text, ve);
   messagebox.show("入库成功");
 
   //清空所要填的值选项
   txt_id.text="";
   txt_xing.text="";
   cmb_color.text="";
   txt_time.text="";
   txt_money.text= "";
   txt_zhong.text = "";
  }
  else
  {
 
   messagebox.show("请完善信息的填写!");
  }
  
 
 }

以上就是本文的全部内容,希望对大家的学习有所帮助。

延伸 · 阅读

精彩推荐
  • C#利用C#实现网络爬虫

    利用C#实现网络爬虫

    这篇文章主要介绍了利用C#实现网络爬虫,完整的介绍了C#实现网络爬虫详细过程,感兴趣的小伙伴们可以参考一下...

    C#教程网11852021-11-16
  • C#C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    这篇文章主要介绍了C#设计模式之Strategy策略模式解决007大破密码危机问题,简单描述了策略模式的定义并结合加密解密算法实例分析了C#策略模式的具体使用...

    GhostRider10972022-01-21
  • C#三十分钟快速掌握C# 6.0知识点

    三十分钟快速掌握C# 6.0知识点

    这篇文章主要介绍了C# 6.0的相关知识点,文中介绍的非常详细,通过这篇文字可以让大家在三十分钟内快速的掌握C# 6.0,需要的朋友可以参考借鉴,下面来...

    雨夜潇湘8272021-12-28
  • C#SQLite在C#中的安装与操作技巧

    SQLite在C#中的安装与操作技巧

    SQLite,是一款轻型的数据库,用于本地的数据储存。其优点有很多,下面通过本文给大家介绍SQLite在C#中的安装与操作技巧,感兴趣的的朋友参考下吧...

    蓝曈魅11162022-01-20
  • C#C#微信公众号与订阅号接口开发示例代码

    C#微信公众号与订阅号接口开发示例代码

    这篇文章主要介绍了C#微信公众号与订阅号接口开发示例代码,结合实例形式简单分析了C#针对微信接口的调用与处理技巧,需要的朋友可以参考下...

    smartsmile20127762021-11-25
  • C#VS2012 程序打包部署图文详解

    VS2012 程序打包部署图文详解

    VS2012虽然没有集成打包工具,但它为我们提供了下载的端口,需要我们手动安装一个插件InstallShield。网上有很多第三方的打包工具,但为什么偏要使用微软...

    张信秀7712021-12-15
  • C#如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    这篇文章主要给大家介绍了关于如何使用C#将Tensorflow训练的.pb文件用在生产环境的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴...

    bbird201811792022-03-05
  • C#深入理解C#的数组

    深入理解C#的数组

    本篇文章主要介绍了C#的数组,数组是一种数据结构,详细的介绍了数组的声明和访问等,有兴趣的可以了解一下。...

    佳园9492021-12-10