/** * KVC -- Key Value Coding (键值编码) *
1、KVC是一种间接访问对象实例变量的方式,使用该机制不需要调用存取方法和变量实例就可以访问对象的属性 * KVC
方法存在于NSKeyValueCoding中,默认实现方式由NSObject提供 * KVC ...
分类:
移动开发 时间:
2014-05-09 16:23:57
阅读次数:
376
先创建一个person类并定义name和sex属性,当person的name或sex属性发生变化时会执行一个action/**
* KVO --- Key Value Observe(键值观察者) * KVO 是一种设计模式,属于观察者设计模式 * 观察者设计模式涉及到...
分类:
移动开发 时间:
2014-05-09 16:15:37
阅读次数:
424
戳我去解题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都是哈希表,那么它们有什么区别呢?1.它们所继承的类不一样。HashTable和HashMap都实现了Map接口,但是它们所继承的类时不同的。HashTable继承了Dictionary类(Dictionary类已经过时),而HashMap则是继承了A...
分类:
编程语言 时间:
2014-05-09 07:29:05
阅读次数:
272
格式化输出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:执行LOADDATALOCAL报错。我使用navicatformysql连接mysql服务器执行local可以正常执行。showVARIABLESlike‘%local%infile%‘结果如下:+---------------+-------+|Variable_name|Value|+---------------+-------+|local_infile|ON|+---------------+-------+1rowinset(0.0..
分类:
数据库 时间:
2014-05-09 07:06:20
阅读次数:
372
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
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
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
归档步骤:1、将一个NSDictionary对象归档到一个plist属性列表中
首先要将数据封装成字典:NSMutableDictionary *dict = [NSMutableDctionary dictionary]; [dict
setObject:@"烟灰" forKey:@"name"....
分类:
移动开发 时间:
2014-05-09 05:56:00
阅读次数:
300