- 1、本文档共43页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* 静态方法:不能直接访问非静态成员 * 在创建对象时分配存储空间 * out参数:用于需要返回多个值的场合 * out参数:用于需要返回多个值的场合 * 构造函数:主要用于字段初始化等工作 * 带参数的构造函数:可根据参数进行不同的初始化 * 静态构造函数:对静态字段赋值 * 析构函数:通常由CLR自动调用 * 属性:封装对字段的访问 * 索引函数:封装对多个字段的访问 * * * 可重载的操作符类型 * this:表示所属的当前对象 * GetType:获得当前对象的实际类型 * Equals:比较两个对象是否为同一引用 * 创建string对象:1.直接赋值 2.使用构造函数 * * * string.Format与Console.WriteLine的参数格式化类似 * * * * * 方法 参数类型 值传递 引用传递 * public void Swap(ref int x, ref int y) { int z = x; x = y; y = z; } int a = 10; int b = 20; Swap(a, b); a: 10 b: 20 x y 方法 参数类型 值传递 引用传递 * public void Swap(ref int x, ref int y) { int z = x; x = y; y = z; } int a = 10; int b = 20; Swap(a, b); a: 20 b: 10 x y 方法 参数类型 值传递 引用传递 输出型参数 * public int SumProd(int x, int y, out int a) { a = x * y; return x + y; } 方法 参数类型 值传递 引用传递 输出型参数 数组型参数 * public int Sum(params int[] x) { int s = 0; for(int i=0; ix.Length; i++) s += x[i]; return s; } int[] x = {1, 3, 5, 7, 9}; int s1 = Sum(x); int s2 = Sum(2, 4, 6, 8, 10); 类的特殊方法 构造函数 * public class Student { public int age = 18; } Student s1 = new Student(); s1.age = 20; 类的特殊方法 构造函数 无参构造函数 * public class Student { public int age; public Student() { age = 18; } } Student s1 = new Student(); s1.age = 20; 类的特殊方法 构造函数 无参构造函数 带参构造函数 * public class Student { public int age; public Student(int i) { age = i; } } Student s1 = new Student(20); 类的特殊方法 构造函数 无参构造函数 带参构造函数 静态构造函数 * public class Student { public int age; public static string school; static Student() { school = 华中理工大学; } } 类的特殊方法 构造函数 无参构造函数 带参构造函数 静态构造函数 析构函数 * public class Student { public string name; ~Student() { Console.Write(“学生对象{0}销毁”, name); } } 类的特殊方法 属性 get set * public class Student { private string name; public string Name { get { return name; } set { name = value; } } } 类的特殊方法 索引函数 get set * public class School { private Student[] students; public Student this[int index] { get { return students[index]; } s
文档评论(0)