@synchronized 的作用是创建一个互斥锁,保证此时没有其它线程对self对象进行修改。这个是objective-c的一个锁定令牌,防止self对象在同一时间内被其它线程访问,起到线程的保护作用。
一般在公用变量的时候使用,如单例模式或者操作类的static变量中使用。
@synchronized(object){},每一个object对应一把锁,要执行{}中的代码,首先必须要拿到o...
分类:
编程语言 时间:
2014-05-10 09:24:21
阅读次数:
341
1.NSOperation对于NSOperation,In OS X v10.6 and later,
operation queues ignore the value returned by this method and always start
operations on a separat...
分类:
移动开发 时间:
2014-05-09 17:36:56
阅读次数:
494
1 $() vs $$("someSelector") returns a array.
This is defiend in jQuery.prototype.$.methodName is a method defined in
jQuery...2methods below will stop...
分类:
Web程序 时间:
2014-05-09 11:33:38
阅读次数:
371
用什么关键字修饰同步方法?用synchronized关键字修饰同步方法同步有几种实现方法,都是什么?分别是synchronized,wait与notifywait():使一个线程处于等待状态,并且释放所持有的对象的lock。sleep():使一个正在运行的线程处于睡眠状态,是一个静态方法,调用此方法...
分类:
编程语言 时间:
2014-05-08 19:57:26
阅读次数:
348
2014-05-05 18:10
今天主要忙于工作。之前遇到一个问题,今天得以解决。问题的描叙:需要从输入流中读取固定长度的字节数组。问题的解决:今天参考了网上的资料。解决了。注释部分:之前是通过拷贝数组进行解决,但是难以解决。解决的代码如下:public
synchronized void run...
分类:
其他好文 时间:
2014-05-07 19:06:06
阅读次数:
329
一、普通1、private String[] method =
null;ArrayAdapter methodAdapter = new
ArrayAdapter(this,android.R.layout.simple_spinner_item, method);methodSpinner =
...
分类:
其他好文 时间:
2014-05-07 18:32:48
阅读次数:
274
### 背景
银时跟我讲,想从 Netty3迁移到Netty4 。
问其原因是因为 Netty3在容器里会报错,错误堆栈:
java.io.IOException: 无法立即完成一个非阻止性套接字操作。
at sun.nio.ch.SocketDispatcher.close0(Native Method)
at sun.nio.ch.SocketDisp...
分类:
其他好文 时间:
2014-05-07 06:30:21
阅读次数:
425
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)类型错误...
分类:
数据库 时间:
2014-05-07 05:15:51
阅读次数:
332
【题目】
原文:
1.4 Write a method to decide if two strings are anagrams or not.
译文:
写一个函数判断两个字符串是否是变位词。
【分析】
变位词(anagrams)指的是组成两个单词的字符相同,但位置不同的单词。比如说, abbcd和abcdb就是一对变位词。该题目有两种思路:
【思路一】
由于变位词只是字...
分类:
其他好文 时间:
2014-05-06 23:17:56
阅读次数:
383
如果我们在 Objective C 中向一个对象发送它无法处理的消息,会出现什么情况呢?我们知道发送消息是通过
objc_send(id, SEL, ...) 来实现的,它会首先在对象的类对象的 cache,method list 以及父类对象的 cache, method list 中依次查找 SEL 对应的 IMP;这个是需要对类对象的结构熟悉,不清楚的可以参考我的下一篇文章《object...
分类:
其他好文 时间:
2014-05-06 21:24:33
阅读次数:
450