翻訳と辞書
Words near each other
・ Targeting (politics)
・ Targeting (warfare)
・ Targeting Iran
・ Targeting pod
・ Targeting tower
・ Targeting Ultra Poor (TUP) Program - The Graduation Approach
・ TargetLink
・ Targetmaster
・ Targetoid
・ Targetoid hemosiderotic hemangioma
・ TargetProcess
・ Targets
・ TargetScan
・ Targett
・ Targettville, New Brunswick
Target–action
・ Targhee
・ Targhee Pass
・ Targhee sheep
・ Targho
・ Targi Północne
・ Targi Wschodnie
・ Targioni Tozzetti
・ Targionia
・ Targionia (plant)
・ Targioniina
・ TARGIT
・ TARGIT Business Intelligence
・ Targmanchats Monastery
・ Targmanchats Vank


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Target–action : ウィキペディア英語版
Target–action
The term target–action design paradigm refers to a kind of software architecture, where a computer program is divided into objects which dynamically establish relationships by telling each other which object they should target and what action or message to send to that target when an event occurs. This is especially useful when implementing graphical user interfaces, which are by nature event-driven.
== Advantages ==

The target–action approach to event-driven systems allows far more dynamism when compared to other, more static approaches, such as by subclassing. That is because subclassing is a relatively stiff way to program: a programmer must lay out the internal interconnection logic of a program at design time and this cannot be changed later, unless the program is stopped, reengineered, and rebuilt. On the other hand, target-action based programming can change these completely at run-time, thus allowing the program to create new interrelationships and novel behavior by itself.
A prime example of this approach is the OpenStep API, which partly thanks to being based on the dynamic Objective-C language, has much of its graphical user interface implemented by using the target-action paradigm. Consider the following example, written in Objective-C:
(setTarget: self );
(setAction: @selector(doSomething) );
Now when the button identified by the button variable is pressed, the runtime system will try to send a message named doSomething to the object in which this code has been invoked. It is also very well possible to determine the message to be sent at run-time:
(setTarget: self );
;
Here the message which is to be sent is determined by consulting a text field's string value (the string of text which the user typed into a text field). This string is afterwards converted into a message (using the NSSelectorFromString function) and passed to the button as its action. This is possible because, under Objective-C, methods are represented by a selector, a simple string describing the method to be called. When a message is sent, the selector is sent into the ObjC runtime, matched against a list of available methods, and the method's implementation is called. The implementation of the method is looked up at runtime, not compile time.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Target–action」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.