标签:style blog class code java color
类
1 using System; 2 namespace bin 3 { 4 public class Doctor 5 { 6 public Doctor(){} 7 public Doctor(string name,byte age) 8 { 9 this._name=name; 10 this._age=age; 11 } 12 private string _name; 13 private byte _age; 14 public string Name 15 { 16 get{return this._name;} 17 set{this._name=value;} 18 } 19 public byte Age 20 { 21 get{return this._age;} 22 set{this._age=value; } 23 } 24 public string doSth() 25 { 26 return "我会给人治病喔~~"; 27 } 28 public static string doAnth() 29 { 30 return "执行的另一个静态方法"; 31 } 32 }
ref 关键字是强迫参数通过引用传递
只读字段(readonly)。
只读字段比常量灵活的多,常量(const)字段必须在声明之初就初始化,但readonly字段甚至
可以进行
一些运算再确定其值。
有时候,可能多个人在访问同一个类,我们可能把同一个类,接口或者结构放在不同的文件
中,只需 要在类 接口 结构前面加上 partial
关键字。
标签:style blog class code java color
原文地址:http://www.cnblogs.com/bin92/p/3716786.html