闲来无事,翻了翻以前的代码,做点总结,菜鸟从这里起航,呵呵。一、List的foreach遍历
先上代码段[1]: 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 ...
分类:
其他好文 时间:
2014-06-12 09:49:31
阅读次数:
195
1.首先创建一下SelfList类; public class
SelfList:IEnumerable { }2.添加默认的初始大小为4的Item数组; public class
SelfList:IEnumerable{ /// /// 默认数组 /// private T[...
分类:
其他好文 时间:
2014-06-06 12:37:57
阅读次数:
172
foreach.tpl
内建函数foreach的使用
**********foreach的使用**********
**********foreach带key使用**********
=
**********foreach遍历二维数组使用**********
foreachTest.php
<?php
require_once './libs/Smarty....
分类:
其他好文 时间:
2014-05-25 09:48:17
阅读次数:
236
1 (1)面向对象的语言具有__继承性_性、_封装性_性、_多态性
性。(2)能用foreach遍历访问的对象需要实现 _ IEnumerable 接口或声明_ GetEnumerator
方法的类型。1.c#中的三元运算符是__?:__2.当整数a赋值给一个object对象时,整数a将会被__装箱...
分类:
Web程序 时间:
2014-05-05 11:59:52
阅读次数:
614