-(id)performSelector:(SEL)aSelector withObject:(id)anObjectDescription[说明]Sends a message to the receiver with an object as the argument. (required)[将...
分类:
其他好文 时间:
2014-10-10 16:28:10
阅读次数:
146
-(id)performSelector:(SEL)aSelector withObject:(id)anObject withObject:(id)anotherObjectDescription[说明]Sends a message to the receiver with two object...
分类:
其他好文 时间:
2014-10-10 16:00:50
阅读次数:
223
-(id)performSelector:(SEL)aSelectorDescription[说明]Sends a specified message to the receiver and returns the result of the message. (required)[发送指定消息的接...
分类:
其他好文 时间:
2014-10-10 13:29:34
阅读次数:
288
Our good friend Mole is trying to code a big message. He is typing on an unusual keyboard with characters arranged in following way:
qwertyuiop
asdfghjkl;
zxcvbnm,./
Unfortunately Mole is blind, ...
分类:
其他好文 时间:
2014-10-10 02:36:33
阅读次数:
315
本章我们来了解下MSMQ的基本概念和开发过程。MSMQ全称MicroSoft Message Queue,微软消息队列,是在多个不同应用之间实现相互通信的一种异步传输模式,相互通信的应用可以分布于同一台机器上,也可以分布于相连的网络空间的任一位置。它的实现原理是:消息的发送者要把自己想要发送的信息放...
分类:
其他好文 时间:
2014-10-10 00:35:53
阅读次数:
729
https://www.autoitscript.com/autoit3/docs/appendix/WinMsgCodes.htmWM_ACTIVATE 0x0006WM_ACTIVATEAPP 0x001CWM_A...
一、Handler 和 Thread package com.lstech.app; import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message...
分类:
移动开发 时间:
2014-10-09 22:37:47
阅读次数:
250
尽管MessageQueue提供了直接读/写的函数接口,但对于程序员来说,一般不直接读/写消息队列。之前了解到,在Looper.loop()函数中,当取出消息后,会回调msg.target对象的handleMessage()函数,而msg.target的类型正是Handler。
/**
* Run the message queue in this thread. Be sure to call
* {@link #quit()} to end the loop.
...
分类:
其他好文 时间:
2014-10-09 16:59:58
阅读次数:
243
消息队列采用排队方式对消息进行处理,即先到的消息会先得到处理,但如果消息本身指定了被处理的时刻,则必须等到该时刻才能处理该消息。消息在MessageQueue中使用Message类表示,队列中的消息以链表的结构进行保存,Message对象内部包含一个next变量,该变量指向下一个消息对象。
MessageQueue中的两个主要函数是“取出消息”和“添加消息”,分别是next()和enquenceMessage()。
next()函数
final Message next() {
int...
分类:
其他好文 时间:
2014-10-09 15:43:48
阅读次数:
251
B/S不像C/S那样一个MessageBox就可以弹出提示框,不过可以通过js的“Alert”来弹出消息,或者通过一些变种的js方法。protected void Message_Click(object sender, EventArgs e){ //第一种 Res...
分类:
Web程序 时间:
2014-10-09 15:04:54
阅读次数:
247