翻訳と辞書
Words near each other
・ Metarctia priscilla
・ Metarctia pulverea
・ Metarctia pumila
・ Metarctia quinta
・ Metarctia robusta
・ Metarctia rubra
・ Metarctia rubribasa
・ Metarctia rubripuncta
・ Metarctia rufescens
・ Metarctia saalfeldi
・ Metarctia salmonea
・ Metarctia sarcosoma
・ Metarctia schoutedeni
・ Metarctia seydeliana
・ Metaprionota
Metaprogramming
・ Metaprogramming (management)
・ Metaproscaline
・ Metaprosphera
・ Metaproteomics
・ Metaprotus
・ Metaprotus asuridia
・ Metaprotus magnifica
・ Metapsychiatry
・ Metapsychology
・ Metapterini
・ Metapterygota
・ Metapuzzle
・ Metapán
・ MetaQuotes Language MQL4/MQL5


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

Metaprogramming : ウィキペディア英語版
Metaprogramming

Metaprogramming is the writing of computer programs with the ability to treat programs as their data. It means that a program could be designed to read, generate, analyse or transform other programs, and even modify itself while running.〔Course on Program Analysis and Transformation. By Prof. Harald Sondergaard.(【引用サイトリンク】title=Course on Program Analysis and Transformation )〕 In some cases, this allows programmers to minimize the number of lines of code to express a solution (hence reducing development time), or it gives programs greater flexibility to efficiently handle new situations without recompilation.
The language in which the metaprogram is written is called the metalanguage. The language of the programs that are manipulated is called the ''object language''. The ability of a programming language to be its own metalanguage is called ''reflection'' or ''reflexivity''.
Reflection is a valuable language feature to facilitate metaprogramming. Having the programming language itself as a first-class data type (as in Lisp, Prolog, SNOBOL, or Rebol) is also very useful; this is known as ''homoiconicity''. Generic programming invokes a metaprogramming facility within a language, in those languages supporting it.
Metaprogramming usually works in one of three ways. The first way is to expose the internals of the run-time engine to the programming code through application programming interfaces (APIs). The second approach is dynamic execution of expressions that contain programming commands, often composed from strings, but can also be from other methods using arguments or context.〔for example, instance_eval in Ruby takes a string or an anonymous function. (【引用サイトリンク】title=Rdoc for Class: BasicObject (Ruby 1.9.3) - instance_eval )〕 Thus, "programs can write programs." Although both approaches can be used in the same language, most languages tend to lean toward one or the other.
The third way is to step outside the language entirely. General purpose program transformation systems such as compilers, which accept language descriptions and can carry out arbitrary transformations on those languages, are direct implementations of general metaprogramming. This allows metaprogramming to be applied to virtually any target language without regard to whether that target language has any metaprogramming abilities of its own.
== Approaches ==


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



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

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