上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 215 下一页
摘要: 继承: using System; class Parent { public void Msg() { Console.WriteLine("Parent"); } } class Child : Parent { } class Program { static void Main() { Parent ObjParent = new Paren... 阅读全文
posted @ 2009-01-02 16:45 万一 阅读(2444) 评论(1) 推荐(0) 编辑
摘要: 所有类默认继承于 System.Object(或叫 Object): using System; class MyClass1 { } class MyClass2 : Object { } class MyClass3 : System.Object { } class Program { static void Main() { MyClass1... 阅读全文
posted @ 2009-01-02 14:49 万一 阅读(2773) 评论(0) 推荐(0) 编辑
摘要: 无参、无返回值的函数: using System; class MyClass { static void Show() { Console.WriteLine("function"); } static void Main() { Show(); //function Console.ReadKey(... 阅读全文
posted @ 2009-01-01 21:00 万一 阅读(2398) 评论(3) 推荐(0) 编辑
摘要: 字符串数组: using System; class MyClass { static void Main() { string[] arr = new string[3] { "aa", "bb", "cc" }; foreach (string s in arr) Console.WriteLine(s); // aa/bb/cc ... 阅读全文
posted @ 2009-01-01 16:44 万一 阅读(2781) 评论(2) 推荐(0) 编辑
摘要: 显示枚举、枚举值、枚举名: using System; class MyClass { enum MyEnum { AA, BB, CC }; /* 类型定义不能在函数体内 */ static void Main() { MyEnum e = MyEnum.CC; Console.WriteLine(e); ... 阅读全文
posted @ 2008-12-31 17:04 万一 阅读(2719) 评论(3) 推荐(0) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/12/30/1364557.html#1417716 本例效果图: 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Di... 阅读全文
posted @ 2008-12-31 09:24 万一 阅读(6950) 评论(17) 推荐(0) 编辑
摘要: if (bool) { } else { } switch (v) { case v1: ... break; case v2: ... break; ... default: ... break; } do { } while (bool); while (bool) { } for (int i; i C# 的 switch 语句支持字符串, 但好像只能用 const st... 阅读全文
posted @ 2008-12-30 23:49 万一 阅读(1778) 评论(0) 推荐(0) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/12/30/1316584.html#1417644 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls... 阅读全文
posted @ 2008-12-30 16:16 万一 阅读(2897) 评论(2) 推荐(0) 编辑
摘要: 使用 Convert 类: ToBoolean -> bool ToByte -> byte ToChar -> char ToDateTime -> DateTime ToDecimal -> decimal ToDouble -> double ToInt16 -> short ToInt32 -> int ToInt64 -> long ToSBy... 阅读全文
posted @ 2008-12-30 14:37 万一 阅读(2184) 评论(0) 推荐(0) 编辑
摘要: 基本: . () [] x++ x-- new typeof checked unchecked -> :: 一元: + - ! ~ ++x --x (T)x True False & sizeof 乘除: * / % 加减: + - 移位: > 关系: = is as 相等: == != 逻辑: & ^ | 条件: && ||... 阅读全文
posted @ 2008-12-30 11:53 万一 阅读(2736) 评论(4) 推荐(0) 编辑
上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 215 下一页