上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 64 下一页
  2013年3月26日
摘要: ylbtech- .NET-Basic:A.5.1-C# 中的 数组(ArrayList)对象A.5.1-C# 中的 数组(ArrayList)对象。1、集合类 ArrayList 成员函数 add(object o) remove(object o)从数组中查找o,若存在则删除 removeAt(int index)1.A,源代码(Source Code)---Demo ArrayList 对象返回顶部 using System;//引用命名空间using System.Collections;namespace TestArrayList{ class Program {... 阅读全文
posted @ 2013-03-26 16:59 ylbtech 阅读(450) 评论(0) 推荐(1) 编辑
摘要: ylbtech-JavaScript:脚本输出当前 “yyyy-MM-dd WeakDay Festval”脚本输出当前 “yyyy-MM-dd WeakDay Festval”1.A,源代码(Source Code)-脚本输出当前 “yyyy-MM-dd WeakDay Festval”返回顶部 <SCRIPT language=javascript> <!-- calendar = new Date(); day = calendar.getDay(); month = calen... 阅读全文
posted @ 2013-03-26 09:49 ylbtech 阅读(350) 评论(0) 推荐(0) 编辑
  2013年3月25日
摘要: ylbtech- .NET-Basic:A.5-1,集合类 ArrayList。2,对字符串的处理(String)A.5-1,集合类 ArrayList。2,对字符串的处理(String)。1.A,笔记(Notes)返回顶部 1、集合类 ArrayList 成员函数 add(object o) remove(object o)从数组中查找o,若存在则删除 removeAt(int index)2、基础类 String 属性: Length:字符串长度 方法: IndexOf, LastIndexOf,split,replace,substring split(字符串),把字符串对象,按指... 阅读全文
posted @ 2013-03-25 17:54 ylbtech 阅读(202) 评论(0) 推荐(0) 编辑
摘要: ylbtech- .NET-Basic:A.4.5-输入一个日期,然后 DateTime 类,实现求这个日期是星期几,是该年的第几天A.4.5-输入一个日期,然后 DateTime 类,实现求这个日期是星期几,是该年的第几天1.A,源代码(Source Code)返回顶部 using System;namespace TextDateTime{ class Program { static void Main(string[] args) { Console.WriteLine("请输入日期(yyyy-mm-ddd)"); ... 阅读全文
posted @ 2013-03-25 17:45 ylbtech 阅读(323) 评论(0) 推荐(0) 编辑
摘要: ylbtech- .NET-Basic:A.4.5-异常处理(try catch finally),堆栈轨迹(StackTrace)A.4.5-异常处理(try catch finally),堆栈轨迹(StackTrace)实现一个有可能产生异常的函数,然后捕捉异常1.A,源代码(Source Code)返回顶部 using System;namespace 异常处理{ class Program { static void Main(string[] args) { Console.WriteLine("请输入日期(yyyy-mm... 阅读全文
posted @ 2013-03-25 16:59 ylbtech 阅读(364) 评论(0) 推荐(0) 编辑
摘要: ylbtech- .NET-Basic:A.4.4-密封类和密封方法 sealedA.4.4-密封类和密封方法 sealed --类似java中的 final 密封的方法不能被重写, 密封的类不能被继承 sealed针对的是子类,以及子类重写的方法1.A,源代码(Source Code)返回顶部 1.A.1,JiSuan.csusing System;namespace 密封类{ //抽象类 abstract class JiSuan { //抽象方法 public abstract int JieCheng(int num); }}... 阅读全文
posted @ 2013-03-25 16:40 ylbtech 阅读(274) 评论(0) 推荐(0) 编辑
摘要: ylbtech- .NET-Basic:A.4.3-抽象方法和抽象类 abstractA.4.3-抽象方法和抽象类 abstract 抽象方法和虚方法的区别;1.A,源代码(Source Code)返回顶部 1.A.1,Base.csusing System;//抽象方法特点://1,只有方法头//2,没有方法体namespace 抽象类及抽象方法{ //类添加abstract修饰,变成抽象类 abstract class Base { private int a; private int b; public Base() ... 阅读全文
posted @ 2013-03-25 16:24 ylbtech 阅读(223) 评论(0) 推荐(0) 编辑
摘要: ylbtech- .NET-Basic:A.4.2-虚函数 virtual 和多态的实现A.4.2-虚函数 virtual 和多态的实现; 虚函数(virtual):主要目的就是为了让子类重写,这样的方法可以有方法体abstract 子类的重写格式 : override 返回类型 方法名()1.A,运行效果图返回顶部 A.1,Person.csView Code using System;namespace 继承_虚函数{ class Person { int id; string name; string sex; pu... 阅读全文
posted @ 2013-03-25 16:10 ylbtech 阅读(212) 评论(0) 推荐(0) 编辑
摘要: ylbtech- .NET-Basic:A.4.1-类的继承(implement)A.4.1-类的继承(implement)1.A,源代码返回顶部 A.4.1,Person.csView Code using System;namespace 继承{ class Person { //字段 int id; //编号 string name; //姓名 string sex; //性别 //空参构造 public Person() { this.id ... 阅读全文
posted @ 2013-03-25 15:46 ylbtech 阅读(326) 评论(0) 推荐(0) 编辑
摘要: ylbtech- .NET-Basic:A.4-继承,方法重写(覆盖)(override),虚函数(virtaul)和多态,抽象方法和抽象类abstract,密封类(sealed)和密封方法,常量的定义(const)A.4-继承,方法重写(覆盖)(override),虚函数(virtaul)和多态,抽象方法和抽象类abstract,密封类(sealed)和密封方法,常量的定义(const)1.A,运行效果图返回顶部 三、继承1、继承的语法实现: class 子类名 : 基类名{}2、子类构造方法的实现,及base关键字的使用; ---super 1)通过base子类可以访问基类的成员, 2). 阅读全文
posted @ 2013-03-25 15:28 ylbtech 阅读(449) 评论(0) 推荐(0) 编辑
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 64 下一页