码迷,mamicode.com
首页 > 其他好文 > 详细

S2T40,第四章,简答5

时间:2017-04-07 01:05:52      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:构造函数   set   nbsp   value   class   open   eve   pre   lap   

技术分享
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace Emmet
 8 {
 9     class Wizard
10     {
11         public Wizard()
12         {
13             this.HP = 1000;
14         }
15 
16         public Wizard(int level, int combatValues, int hp)
17         {
18             this.HP = hp;
19             this.Level = level;
20             this.CombatValues = combatValues;
21         }
22 
23         public int Level { get; set; }
24 
25         public int CombatValues { get; set; }
26 
27         public int HP { get; set; }
28     }
29 }
巫师类的重载构造函数

 

S2T40,第四章,简答5

标签:构造函数   set   nbsp   value   class   open   eve   pre   lap   

原文地址:http://www.cnblogs.com/lzx666/p/6676033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!