释义 |
indirection
in·di·rec·tion I0107900 (ĭn′dĭ-rĕk′shən, -dī-)n.1. The quality or state of being indirect.2. a. Lack of straightforwardness; deviousness: obtained their goal by subtle indirection.b. A devious act or statement: wouldn't give us a straight answer, only hints and indirections.3. Lack of direction; aimlessness.indirection (ˌɪndɪˈrɛkʃən) n1. indirect procedure, courses, or methods2. lack of direction or purpose; aimlessness3. indirect dealing; deceitin•di•rec•tion (ˌɪn dəˈrɛk ʃən, -daɪ-) n. 1. indirect action or procedure. 2. a roundabout course or method. 3. a lack of direction or goal; aimlessness. 4. deceitful or dishonest dealing. [1585–95] ThesaurusNoun | 1. | indirection - indirect procedure or action; "he tried to find out by indirection"procedure, process - a particular course of action intended to achieve a result; "the procedure of obtaining a driver's license"; "it was a process of trial and error" | | 2. | indirection - deceitful action that is not straightforward; "he could see through the indirections of diplomats"dissimulation, deception, dissembling, deceit - the act of deceiving |
indirectionnounLack of straightforwardness and honesty in action:chicanery, craft, craftiness, deviousness, dishonesty, shadiness, shiftiness, slyness, sneakiness, trickery, trickiness, underhandedness.Translationsindirection
indirection (programming)Manipulating data via its address. Indirectionis a powerful and general programming technique. It can beused for example to process data stored in a sequence ofconsecutive memory locations by maintaining a pointer to thecurrent item and incrementing it to point to the next item.
Indirection is supported at the machine language level byindirect addressing. Many processor and operating systemarchitectures use vectors which are also an instance ofindirection, being locations which hold the address of aroutine to handle a particular event. The event handler canbe changed simply by pointing the vector at a new piece ofcode.
C includes operators "&" which returns the address of avariable and its inverse "*" which returns the variable at agiven address.indirectionNot direct. Indirection provides a way of accessing instructions, routines and objects when their physical location is constantly changing. The initial routine points to some place, and, using hardware and/or software, that place points to some other place. There can be multiple levels of indirection. For example, point to A, which points to B, which points to C. See indirect address.indirection
Synonyms for indirectionnoun lack of straightforwardness and honesty in actionSynonyms- chicanery
- craft
- craftiness
- deviousness
- dishonesty
- shadiness
- shiftiness
- slyness
- sneakiness
- trickery
- trickiness
- underhandedness
Words related to indirectionnoun indirect procedure or actionRelated Wordsnoun deceitful action that is not straightforwardRelated Words- dissimulation
- deception
- dissembling
- deceit
|