码迷,mamicode.com
首页 >  
搜索关键字:dictionary add    ( 38871个结果
ubuntu 14.04 安装qq
本人系统为Ubuntu 13.04 LTS 64bit,各种google下成功wine安装了QQ用用 1.首先安装最新版的wine1.52,没记错版本号应该是这个 sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt-get update sudo apt-get install wine1.6 sudo apt-get in...
分类:其他好文   时间:2014-05-26 05:33:54    阅读次数:621
Spring的事物处理(转)
环境配置项目使用SSH架构,现在要添加Spring事务管理功能,针对当前环境,只需要添加Spring 2.0 AOP类库即可。添加方法:点击项目右键->Build Path->Add librarys:打开Add Libraries对话框,然后选定 MyEclipse Libraries:点击Nex...
分类:编程语言   时间:2014-05-26 02:12:33    阅读次数:581
自定义data table 的列类型,并填充数据
combobox 的 datasource一般是查询存储过程得到 ,但在测试或演示时,也可以自己定义 , 方法是 : DataTable customerTable = new DataTable(); customerTable.Columns.Add(...
分类:其他好文   时间:2014-05-26 01:35:34    阅读次数:184
Struts2框架中书写XML配置文件时能添加提示技巧(方案二)
1、  先在/工程名/WebRoot/WEB-INF/lib/struts2-core-2.1.8.jar中找到struts-2.1.dtd文件。 2、  在Myeclipse8.6——》Window——》Preferences 3、  在搜索框输入xml文件,找到XMLCatalog,单击XML Catalog出现如上页面,之后单击Add按钮,出现如下图:...
分类:其他好文   时间:2014-05-24 23:46:52    阅读次数:471
Python基础1--变量类型
首先,在之前,我不是一个 Python玩家,我只是一个使用者,需要即取,现在,我要认真学习和记录,正确称为一个Python的玩家。 说明,这明显不是教程,是我自己理解并记录的笔记而已。 Python有五个标准的数据类型: Numbers(数字)String(字符串)List(列表)Tuple(元组)Dictionary(字典) 数字有四种数值类型:int,long ,float...
分类:编程语言   时间:2014-05-24 23:07:59    阅读次数:387
Cocos2d-x 3.0 编译 eclipse+Win7+Android 篇
文档 Eclipse --> Windows--> Preferences ... 3. Set up Variables:  1. Path Variable `COCOS2DX`:  * Eclipse->Preferences->General->Workspace->**Linked Resources** * Click **New** button to add a Path...
分类:移动开发   时间:2014-05-24 17:54:57    阅读次数:282
mysql基础操作、sql技巧和sql的常见优化
一、常见操作 1、复制表结构create table t2 like t1    复制表数据insert into t2 select * from t1 2、mysql索引    alter table用来创建普通索引、unique索引或primary key索引    alter table t add index index_name(column_list)    al...
分类:数据库   时间:2014-05-24 14:43:02    阅读次数:363
C#泛型集合—Dictionary<K,V>使用技巧
[csharp]view plaincopy1、要使用Dictionary集合,需要导入C#泛型命名空间 System.Collections.Generic(程序集:mscorlib)2、描述 1)、从一组键(Key)到一组值(Value)的映射,每一个添加项都是由一个值及其相关连的键组成 ...
分类:其他好文   时间:2014-05-24 11:53:21    阅读次数:297
launch genymotion simulator from command line
Command to launch genymotion headless -player --vm-name Nexus_4if player is not already added to path, add it to path using below command in your ~/.b...
分类:其他好文   时间:2014-05-24 10:13:35    阅读次数:320
arrayList使用 与 foreach 使用
private void button1_Click(object sender, EventArgs e) { IList arrayAnimal = new ArrayList(); arrayAnimal.Add("12"); arrayAnimal.Add("df"); arrayA...
分类:其他好文   时间:2014-05-24 09:37:46    阅读次数:211
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!