码迷,mamicode.com
首页 >  
搜索关键字:dictionary value can    ( 62152个结果
iOS之KVC
/** * KVC -- Key Value Coding (键值编码) * 1、KVC是一种间接访问对象实例变量的方式,使用该机制不需要调用存取方法和变量实例就可以访问对象的属性 * KVC 方法存在于NSKeyValueCoding中,默认实现方式由NSObject提供 * KVC ...
分类:移动开发   时间:2014-05-09 16:23:57    阅读次数:376
iOS之KVO
先创建一个person类并定义name和sex属性,当person的name或sex属性发生变化时会执行一个action/** * KVO --- Key Value Observe(键值观察者) * KVO 是一种设计模式,属于观察者设计模式 * 观察者设计模式涉及到...
分类:移动开发   时间:2014-05-09 16:15:37    阅读次数:424
Leetcode:Search a 2D Matrix
戳我去解题Write an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following properties:Integers in each row are sorted f...
分类:其他好文   时间:2014-05-09 08:27:24    阅读次数:241
Java中HashTable和HashMap的区别
在Java中,HashTable和HashMap都是哈希表,那么它们有什么区别呢?1.它们所继承的类不一样。HashTable和HashMap都实现了Map接口,但是它们所继承的类时不同的。HashTable继承了Dictionary类(Dictionary类已经过时),而HashMap则是继承了A...
分类:编程语言   时间:2014-05-09 07:29:05    阅读次数:272
python学习笔记-输入输出
格式化输出print(format(value,format_spec)),其中3为打印位数,2f为精度print(format(12.2356,‘3.2f‘)) print(format(0.23456,‘.1%‘)) D:\Python27\python.exeF:/Self-Study/python-study/input_output.py 12.24 23.5%
分类:编程语言   时间:2014-05-09 07:14:02    阅读次数:268
mysql:执行LOAD DATA LOCAL 报错
mysql:执行LOADDATALOCAL报错。我使用navicatformysql连接mysql服务器执行local可以正常执行。showVARIABLESlike‘%local%infile%‘结果如下:+---------------+-------+|Variable_name|Value|+---------------+-------+|local_infile|ON|+---------------+-------+1rowinset(0.0..
分类:数据库   时间:2014-05-09 07:06:20    阅读次数:372
Twenproxy介绍
Twemproxy is a proxy server that allows you to reduce the number of open connections to yourMemcached or Redis server. What is Twemproxy useful for? It can reduce the number of connections t...
分类:其他好文   时间:2014-05-09 06:30:25    阅读次数:258
android Bluetooth(官方翻译)
Bluetooth Using the Bluetooth APIs, an Android application can perform the following: 使用蓝牙APIs,一个Android应用可以进行如下操作: Scan for other Bluetooth devices 扫描其他蓝牙设备 Query the local Bluetooth adapter...
分类:移动开发   时间:2014-05-09 06:15:57    阅读次数:479
UVA 10025(数学)
The ? 1 ? 2 ? ... ? n = k problem  The problem Given the following formula, one can set operators '+' or '-' instead of each '?', in order to obtain a given k ? 1 ? 2 ? ... ? n =...
分类:其他好文   时间:2014-05-09 06:10:40    阅读次数:285
IOS中将对象属性列表归档成一个plist文件中
归档步骤:1、将一个NSDictionary对象归档到一个plist属性列表中 首先要将数据封装成字典:NSMutableDictionary *dict = [NSMutableDctionary dictionary]; [dict setObject:@"烟灰" forKey:@"name"....
分类:移动开发   时间:2014-05-09 05:56:00    阅读次数:300
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!