Jump to content

Boolean flag: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
→‎Efficiency: Add citation
Replace no references issue with more references issue
Line 1: Line 1:
{{multiple issues|
{{multiple issues|
{{no references|date=January 2018}}
{{Refimprove|date=April 2021}}
{{original research|date=January 2018}}
{{original research|date=January 2018}}
}}
}}

Revision as of 12:23, 10 April 2021

A Boolean flag, truth bit or truth flag in computer science is a Boolean value represented as one bit, which encodes a state variable with two possible values.

Memory usage

A single byte can contain up to 8 separate Boolean flags, making it a very economical and dense method of data storage. This is known as a packed representation or bit-packing, and the opposite encoding with only one bit per byte used is known as a sparse representation.

Efficiency

Most computer languages support the setting and testing of single or multiple bits in combination for use as truth indicators and usually up to 256 different combinations of conditions can be tested for with just a single instruction on one byte using bitwise operations. Advancements in processor design and parallel computing mean even more Boolean algebra operations on Boolean flags can be done with just a single instruction using SIMD technology, often implemented in programming languages as compiler intrinsic functions.[1]

Usage

Sometimes, programs are written to simply set flags when certain conditions are detected, rather than have multiple nested conditional statements (e.g. ifs) that can get quite complex. When all the conditions are tested for and all flags set on or off appropriately, testing can commence on various combinations of conditions - by reference to the flags instead of the variables themselves. This can simplify processing considerably and allows decision tables to be implemented by mapping to their binary representations in memory.

See also

References

  1. ^ "Intel Intrinsics Guide". Intel Developer Zone. Retrieved 2021-04-10.