Sponsored Links
-->

Sunday, May 20, 2018

Metasyntactic Variable | 照片图像图像
src: community.fansshare.com

A metasyntactic variable is a specific word or set of words identified as a placeholder in computer science and specifically computer programming. These words are commonly found in source code and are intended to be modified or substituted to be applicable to the specific usage before compilation (translation to an executable). The words foo and bar are good examples as they are used in over 330 Internet Engineering Task Force Requests for Comments, which are documents explaining foundational internet technologies like HTTP (websites), TCP/IP, and email protocols.

By mathematical analogy, a metasyntactic variable is a word that is a variable for other words, just as in algebra letters are used as variables for numbers.

Metasyntactic variables are used to name entities such as variables, functions, and commands whose exact identity is unimportant and serve only to demonstrate a concept, which is useful for teaching programming.


Video Metasyntactic variable



Common metasyntactic variables

Due to English being the foundation-language, or lingua franca, of most computer programming languages these variables are commonly seen even in programs and examples of programs written for other spoken-language audiences.

The typical names may depend however on the subculture that has developed around a given programming language.

General usage

Metasyntactic variables used commonly across all programming languages: dgx, dfs, foobar, foo, bar, baz, qux, quux, quuz, corge, grault, garply, waldo, fred, plugh, xyzzy, and thud. Wibble, wobble, wubble, and flob are used in the UK. And there are a reported blep, blah, and boop from Australia.

A complete reference can be found in a MIT Press book titled: The Hacker's Dictionary.

Python

spam, ham, and eggs are the principal metasyntactic variables used in the Python programming language. This is a reference to the comedy sketch Spam by Monty Python, the eponym of the language.

Japanese

In Japanese, the words hoge (??) and piyo (??) are commonly used, with other common words and variants being fuga (??), hogera (???), and hogehoge (????). Note that -ra is a pluralizing ending in Japanese, and reduplication is also used for pluralizing. The origin of hoge as a metasyntactic variable is not known, but it is believed to date to the early 1980s.


Maps Metasyntactic variable



Usage examples

C

In the following example the function name foo and the variable name bar are both metasyntactic variables. Lines beginning with // are comments.

Python

Spam, ham, and eggs are the principal metasyntactic variables used in the Python programming language. This is a reference to the famous comedy sketch, "Spam", by Monty Python, the eponym of the language. In the following example spam, ham, and eggs are metasyntactic variables and lines beginning with # are comments.

Ruby

In the following example the baz, foo, and bar are metasyntactic variables and lines beginning with # are comments.

IETF Requests for Comments

Both the IETF RFCs and computer programming languages are rendered in plain text, making it necessary to distinguish metasyntactic variables by a naming convention, since it would not be obvious from context.

Plain text example:

RFC 772 (cited in RFC 3092) contains for instance:

 All is well; now the recipients can be specified.         S: MRCP TO:<Foo@Y> <CRLF>       R: 200 OK         S: MRCP TO:<Raboof@Y> <CRLF>       R: 553  No such user here         S: MRCP TO:<bar@Y> <CRLF>       R: 200 OK         S: MRCP TO:<@Y,@X,fubar@Z> <CRLF>       R: 200 OK      Note that the failure of "Raboof" has no effect on the storage of    mail for "Foo", "bar" or the mail to be forwarded to "fubar@Z"    through host "X".  

(The documentation for texinfo emphasizes the distinction between metavariables and mere variables used in a programming language being documented in some texinfo file as: "Use the @var command to indicate metasyntactic variables. A metasyntactic variable is something that stands for another piece of text. For example, you should use a metasyntactic variable in the documentation of a function to describe the arguments that are passed to that function. Do not use @var for the names of particular variables in programming languages. These are specific names from a program, so @code is correct for them.")

Another point reflected in the above example is the convention that a metavariable is to be uniformly substituted with the same instance in all its appearances in a given schema. This is in contrast with nonterminal symbols in formal grammars where the nonterminals on the right of a production can be substituted by different instances.


Metasyntactic Variable | 照片图像图像
src: community.fansshare.com


Teaching concepts

This section includes bits of code which show how metasyntactic variables are used in teaching computer programming concepts.

C++

Function prototypes with different argument passing mechanisms:

Example showing the function overloading capabilities of the C++ language


How to say
src: i.ytimg.com


See also

  • Metavariable (logic)
  • xyzzy
  • Alice and Bob
  • John Doe
  • Fnord
  • Free variables and bound variables
  • Gadget
  • Lorem ipsum
  • Nonce word
  • Placeholder name
  • Widget
  • Smurf

Metasyntactic Variable | 照片图像图像
src: community.fansshare.com


References


Metasyntactic Variable | 照片图像图像
src: community.fansshare.com


External links

  • Definition of metasyntactic variable, with examples.
  • Examples of metasyntactic variables used in Commonwealth Hackish, such as wombat.
  • Variable "foo" and Other Programming Oddities

Source of article : Wikipedia