标签:
本文转载自 http://blog.csdn.net/tianyao9hen/article/details/50890827 感谢原创
为类设置属性,可以通过get和set来获取信息,这样,可以设置私有元素。
一般属性的开头用大写字母(ep:Name)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace study1_repeat { class Program { static void Main(string[] args) { classText ct = new classText("李刚"); Console.WriteLine(ct.Name); ct.Name = "刘明"; Console.WriteLine(ct.Name); Console.ReadLine(); } } //添加一个类 class classText { //私有元素 private String name; public classText(){ Console.WriteLine("ceshi"); } public classText(String name) { this.name = name; } //设置属性 //设置好属性后,可以通过调用Name的方法 public String Name { get {//返回元素,获取属性 return name; } set { //使得name获得相应的元素,设置属性 //对应:ct.Name = "刘明"; name = value; } } } }
修饰符 返回类型 方法名称(参数列表)
{
方法体;
}
如果写返回类型,就必须要用return返回一个和返回类型相同的值。
如果不写返回类型,就要用void。
使用static关键字
实例变量:
int i
静态变量:
static int i
实例方法:
void example(){}
静态方法:
static void example(){}
标签:
原文地址:http://www.cnblogs.com/yunyun0574/p/5930087.html