码迷,mamicode.com
首页 >  
搜索关键字:keys    ( 2756个结果
python 的一些小技巧
赋值:a, b, c = 'xixi', 'haha', 'hehe'连接字典:>>> s = {1:'a', 2:'b', 3:'c'}>>> s.keys()[1, 2, 3]>>> s.values()['a', 'b', 'c']>>> s.items()[(1, 'a'), (2, 'b'...
分类:编程语言   时间:2014-08-01 09:12:31    阅读次数:333
[ngRepeat:dupes] Duplicates in a repeater are not allowed. Use 'track by' expression to specify uniq
angularjs 使用ng-repeat报错 {{word}} [ngRepeat:dupes] Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys   发现是因为相同的内容重复引起,解决方案 {{word}} 在ng-...
分类:其他好文   时间:2014-07-31 13:34:04    阅读次数:199
PreparedStatement 获取自动生成键
PreparedStatement获取自动生成键使用可以获取自动生成键方法Statement.RETURN_GENERATED_KEYS表示返回生成键PreparedStatementpstmt=conn.prepareStatement(sql,Statement.RETURN_GENERATED_KEYS);//获取生成键的结果集ResultSetrls=pstmt.getGeneratedKeys();getGeneratedKey..
分类:其他好文   时间:2014-07-30 17:47:14    阅读次数:179
Myeclipse代码提示及如何设置自动提示
1. 设置代码自动提示window --> preference --> General --> keys --> 选择content assist默认的是ctrl+space,与系统的切换输入法冲突了,于是改成Alt+/,when下拉框选择In dialog and windows;并且勾选Inc...
分类:系统相关   时间:2014-07-29 20:50:12    阅读次数:259
PHP二维数组排序函数
PHP一维数组的排序可以用sort(),asort(),arsort()等函数,但是PHP二维数组的排序需要自定义。以下函数是对一个给定的二维数组按照指定的键值进行排序,先看函数定义:function array_sort($arr,$keys,$type='asc'){ $keysvalu...
分类:Web程序   时间:2014-07-29 14:08:28    阅读次数:277
ssh无密码登陆
生成密钥并复制 --- `ssh-keygen -t rsa -P ‘‘` `cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys` `chmod 600 ~/.ssh/authorized_keys` 修改SSH配置文件 --- 更改`/etc/ssh/sshd_config`中的 ``` RSAAuthentic...
分类:其他好文   时间:2014-07-26 03:30:17    阅读次数:216
hdu1298 T9(手机输入法,每按一个数字,找出出现频率最高的字串,字典树+DFS)
Problem Description A while ago it was quite cumbersome to create a message for the Short Message Service (SMS) on a mobile phone. This was because you only have nine keys and the alphabet has more t...
分类:移动开发   时间:2014-07-26 02:40:36    阅读次数:332
android HashMap的几种遍历方法
HashMap的几种遍历方法1、第一种: Map map = new HashMap(); Set keys = map.keySet(); Iterator iterator = keys.iterator(); while (iterator.hasNext()) { ...
分类:移动开发   时间:2014-07-25 16:35:21    阅读次数:565
HDU 1018 Big Number 数学题解
Problem Description In many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data, encryption, etc. In this problem you ar...
分类:其他好文   时间:2014-07-24 23:20:03    阅读次数:915
SecureCRT学习之道:SecureCRT常用快捷键设置与字体设置方法
1:如果不想每次登陆都输入密码,可以在你打开的session里邮件session option->login action 选中automate logon 双击ogin 和assword分别输入用户名和密码就行了,telnet的命令符为〉,敲入指令的命令符为#  2:如果在global option->terminal->emulation->mapped keys勾选CUA setting就...
分类:其他好文   时间:2014-07-24 17:37:40    阅读次数:251
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!