- Flag (computing)
In
computer programming , flag refers to one or morebit s that are used to store a binary value orcode that has an assigned meaning. Flags are typically found as members of a defineddata structure , such as adatabase record , and the meaning of the value contained in a flag will generally be defined in relation to the data structure it is part of. In many cases, the binary value of a flag will be understood to represent one of several possible states or statuses. In other cases, the binary values may represent one or more attributes in abit field , often related to abilities or permissions, such as "can be written to" or "can be deleted". However, there are many other possible meanings that can be assigned to flag values. One common use of flags is to mark or designate data structures for future processing.Within
microprocessor s and other logic devices, flags are commonly used to control or indicate the intermediate or final state or outcome of different operations. Microprocessors typically have, for example, astatus register that is composed of such flags, and the flags are used to indicate various post-operation conditions, such as when there has been anarithmetic overflow . The flags can be utilized in subsequent operations, such as in processing conditionaljump instruction s. For example a "je" (Jump if Equal) instruction in the X86 assembly language will result in a jump if the Z (zero) flag was set by some previous operation.A
command line switch is also referred to as a flag.Command line programs often start with an optionparser that translates command line switches into flags in the sense of this article.
Wikimedia Foundation. 2010.