1 //ArrayList是动态数组,方法有:2
//Add----配合foreach一个个的添加3 //AddRange-----以数组的形式,一次性添加4 //Clear--------清空数组5
//Count-----数组的长度6 //Remove-----移除对应的元素7 //Remove...
分类:
其他好文 时间:
2014-06-13 08:20:36
阅读次数:
363
1、将文件checkout到本地目录svn checkout
path(path是服务器上的目录)例如:svn checkout svn://192.168.1.1/pro/domain --username
qinxiaohui简写:svn co2、往版本库中添加新的文件svn add file例...
分类:
系统相关 时间:
2014-06-12 21:41:45
阅读次数:
448
1,从System.String[]转到ListSystem.String[]
str={"str","string","abc"};List listS=new List(str);2,
从List转到System.String[]List listS=new List();listS.Add("...
分类:
其他好文 时间:
2014-06-12 19:24:08
阅读次数:
206
1 (一)ArrayList类:表示大小可按需动态增加的数组 2 protected void
Page_Load(object sender, EventArgs e) 3 { 4 ArrayList al = new ArrayList(); 5
al.Add(100...
分类:
Web程序 时间:
2014-06-12 18:37:24
阅读次数:
255
显示英文的情况:是点击同页面中另外一个ddl控件显示隐藏部分,其中隐藏部分中有另一个ddl,此ddl显示为英文this.ddl.Items.Add(EnumUtils.GetListItem(PeriodType.Month));.......这里在页面显示中为Month修改为:(此种格式显示中文)...
分类:
其他好文 时间:
2014-06-12 15:33:46
阅读次数:
201
git可以add to index-->commit。但在pull的时候出现: org.eclipse.jgit.api.errors.transportexception。
解决办法:
Eclipse windows-->preferences-->general-->security-->secure storage-->contents-->GIT.
选中ssh后点击delete。
...
分类:
系统相关 时间:
2014-06-10 18:29:59
阅读次数:
3547
clear
reset
auto_response on
prompt on
fdda_type = 00
sss = timer()
aaa = 00000000
00 A4 04 00 0E 32 50 41 59 2E 53 59 53 2E 44 44 46 30 31
bbb = apdutime()
aaa = add( $aaa, $bbb ...
分类:
其他好文 时间:
2014-06-10 18:12:30
阅读次数:
261
题目
Given two binary strings, return their sum (also a binary string).
For example,
a = "11"
b = "1"
Return "100".
方法
从后往前,每个字符进行判断。
public String addBinary(String a, String...
分类:
其他好文 时间:
2014-06-10 17:50:48
阅读次数:
241