翻訳と辞書
Words near each other
・ indent style
・ independent logical file
・ independent verification and validation
・ index
・ index data
・ index register
・ indexed sequential access method
・ indices
・ indirect address
・ indirect addressing
indirection
・ induction
・ inductive inference
・ inductive relation
・ industrial programming, inc.
・ industrial robot language
・ industry standard architecture
・ inetd
・ inews
・ infant mortality


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

indirection : FOLDOC
indirection
Manipulating data via its address. Indirection is a powerful and general programming technique. It can be used for example to process data stored in a sequence of consecutive memory locations by maintaining a pointer to the current item and incrementing it to point to the next item.
Indirection is supported at the machine language level by indirect addressing. Many processor and operating system architectures use vectors which are also an instance of indirection, being locations which hold the address of a routine to handle a particular event. The event handler can be changed simply by pointing the vector at a new piece of code.
C includes operators "&" which returns the address of a variable and its inverse "*" which returns the variable at a given address.
(1997-02-06)



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

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