码迷,mamicode.com
首页 >  
搜索关键字:key)    ( 37272个结果
DataGridView key Points
http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview(v=vs.110).aspxThe DataGridView control provides a customizable table for dis...
分类:Windows程序   时间:2014-08-02 15:14:13    阅读次数:311
DataTable Key Points
The DataTable is a central object in the ADO.NET library. Other objects that use the DataTable include the DataSet and the DataView.When accessing Dat...
分类:其他好文   时间:2014-08-02 15:14:03    阅读次数:254
两个对象值相同(x.equals(y)==true),但却可有不同的hash code,这句话对不对
equals方法对比的是元素的值,可以hashcode不同, 但是如果我们override了自己的equals方法同时也应该重载hashcode方法。假设有obj1和obj2相等, 这时候obj1作为key放入map后,用obj2作为key来获取obj1存入的对象...
分类:其他好文   时间:2014-08-02 10:09:23    阅读次数:170
Java epoll
the Gemfire consultant add one more parameter to JVM -Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.EPollSelectorProvider to be honest, I had no idea what it was. so I googled it. the key thin...
分类:编程语言   时间:2014-08-02 01:57:13    阅读次数:235
Redis数据存储解决方案
1、背景 1.1 Redis简介 官方网站:http://redis.io/,Redis是REmote DIctionary Server的缩写。 Redis是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言...
分类:其他好文   时间:2014-08-01 23:24:42    阅读次数:631
Union和Union All的差别
如果我们有一个表Student,包含下面字段与数据:drop table student;create table student(id int primary key,name nvarchar2(50) not null,score number not null);insert into st...
分类:其他好文   时间:2014-08-01 22:57:42    阅读次数:318
参照protobuf,将json数据转换成二进制在网络中传输。
json数据格式在网络中传输需要的数据比二进制庞大太多,我们可以省去key,外加将数字不需要编码成字符串,直接二进制编码就OK。 pack : 将json压包,unpack解包成json。 var Struct = module.exports = {}; Struct.TYPE = { int8:1, int16:2, int32:3, uint8:4, uint16:...
分类:Web程序   时间:2014-08-01 16:14:41    阅读次数:360
db2sql
CREATE TABLE "ADMINISTRATOR"."CK_ROLE" ("RO_ID" SMALLINT primary key NOT NULL generated always as identity(start with 1,increment by 1), "...
分类:数据库   时间:2014-08-01 15:49:11    阅读次数:259
数据结构—二叉查找树
查找树是一种数据结构,二叉查找树是按二叉树结构来组织的。可以用链表结构表示,其中每一个结点就是一个对象。结点中包括:key、数据、left、right、p。其中left、right和p分别指向左儿子,右儿子和父结点。 二叉查找树中的关键字总是满足二叉查找树的性质:y是x左子树上的结点,则key...
分类:其他好文   时间:2014-08-01 15:31:41    阅读次数:219
keydown和keypress
常见的键盘事件是keyup和keydown。淡蓝就经常用document.onkeyup = function (e) { if ((e.keyCode || e.which) === 13) // 对enter键按下后释放的处理,常用来做登录按钮事件 };废话不多说,进入正题。和key...
分类:其他好文   时间:2014-08-01 13:28:01    阅读次数:210
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!