所属命名空间:using System.Collections.Generic; List类是
ArrayList 类的泛型等效类。 该类使用大小可按需动态增加的数组实现 IList 泛型接口。泛型的好处: 它为使用
c#语言编写面向对象程序增加了极大的效力和灵活性。不会强行对值类型进行装箱和拆箱,...
分类:
其他好文 时间:
2014-05-16 19:39:12
阅读次数:
346
control.ascx using System;using
System.Collections.Generic;using System.Linq;using System.Web;using
System.Web.UI;using System.Web.UI.WebControls...
分类:
Web程序 时间:
2014-05-16 08:36:25
阅读次数:
362
第1章容器第1条:慎重选择容器类型。标准STL序列容器:vector、string、deque和list。标准STL关联容器:set、multiset、map和multimap。非标准序列容器slist和rope。slist是一个单向链表,rope本质上是一“重型”string。非标准的关联容器ha...
分类:
编程语言 时间:
2014-05-16 07:50:48
阅读次数:
390
最近学习数据结构,发现c# 其实和c 的链表的实现差不多的下面是一段可直接运行的代码 1
using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using
System.Threading; 5 ...
分类:
其他好文 时间:
2014-05-16 06:24:02
阅读次数:
663
首先 将该代码挂在NGUI的UIroot上
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
Screen.SetResolution(1024, 768, true);//自己想要的分辨率,比如1024*768,true表示全...
分类:
其他好文 时间:
2014-05-14 19:24:25
阅读次数:
404
很多复杂的报表项目,是借助报表工具(或插件)来实现的,下面以jasperReport举例。这些报表工具可以对传统的数据源(关系型数据库、collections、javaBeanArray)进行很好的支持。HBase的数据结构虽然与关系型数据库不一样,但HBase本身就是java开发的。有专门的javaAPI实现对HB..
分类:
其他好文 时间:
2014-05-14 18:23:58
阅读次数:
281
2014-5-14:今天来公司突然发现mysql数据库不同步;方法一:slavestop;
setglobalsql_slave_skip_counter=1;
slavestart;
showslavestatus\G;跳过一个事件event方法二:1.查看从服务器的状态showslavestatus\G记录下maser_log_file和read_master_log_pos记录下这两个值Master_L..
分类:
其他好文 时间:
2014-05-14 17:51:08
阅读次数:
286
在学习简单工厂模式之前让我们先看看不用简单工厂模式所带来的不便把,我们以一个四则运算的计算器为例逐步的进行说明问题,首先先看看用面向程序的思想实现计算器的过程using
System;using System.Collections.Generic;using System.Linq;using S...
分类:
其他好文 时间:
2014-05-14 13:00:49
阅读次数:
244
回宿舍前翻翻Codeforces的时候发现了一个有趣的代码..其实是我没这么用过 :D这是一份417B的代码 1 import sys 2 from
collections import defaultdict 3 4 n = int(sys.stdin.readline()) 5 d = def....
分类:
编程语言 时间:
2014-05-14 12:20:35
阅读次数:
372
using System;using System.Collections.Generic;using
System.Text;using System.Data;using System.Xml;using System.IO;using
System.Web;namespace Utility{...
分类:
Web程序 时间:
2014-05-14 09:54:50
阅读次数:
324