boolean data type
{{Short description|Data having only values "true" or "false"}}
In computer science, the Boolean (sometimes shortened to Bool) is a data type that has one of two possible values (usually denoted true and false) which is intended to represent the two truth values of logic and Boolean algebra. It is named after George Boole, who first defined an algebraic system of logic in the mid 19th century. The Boolean data type is primarily associated with conditional statements, which allow different actions by changing control flow depending on whether a programmer-specified Boolean condition evaluates to true or false. It is a special case of a more general logical data type—logic does not always need to be Boolean (see probabilistic logic).
Generalities
In programming languages with a built-in Boolean data type, such as Pascal, C, Python or Java, the comparison operators such as >
and ≠
are usually defined to return a Boolean value. Conditional and iterative commands may be defined to test Boolean-valued expressions.
Languages with no explicit Boolean data type, like C90 and Lisp, may still represent truth values by some other data type. Common Lisp uses an empty list for false, and any other value for true. The C programming language uses an integer type, where relational expressions like i > j
and logical expressions connected by &&
and ||
are defined to have value 1 if true and 0 if false, whereas the test parts of if
, while
, for
, etc., treat any non-zero value as true.{{cite book |first1= Brian W |last1= Kernighan |author-link1= Brian Kernighan |first2= Dennis M |last2= Ritchie |author-link2= Dennis Ritchie |page= [https://archive.org/details/cprogramminglang00kern/page/41 41] |title= The C Programming Language |edition= 1st |publisher= Prentice Hall |year= 1978 |location= Englewood Cliffs, NJ |isbn= 0-13-110163-3 }}{{cite book |pages= [https://archive.org/details/ansiisostandardc00plau/page/86 86–93] |first1= PJ |last1= Plauger |author-link1= P. J. Plauger |first2= Jim |last2= Brodie |title= ANSI and ISO Standard C Programmer's reference |publisher= Microsoft Press |orig-year= 1989 |year= 1992 |isbn= 1-55615-359-7 |url= https://archive.org/details/ansiisostandardc00plau/page/86 }} Indeed, a Boolean variable may be regarded (and implemented) as a numerical variable with one binary digit (bit), or as a bit string of length one, which can store only two values. The implementation of Booleans in computers are most likely represented as a full word, rather than a bit; this is usually due to the ways computers transfer blocks of information.
Most programming languages, even those with no explicit Boolean type, have support for Boolean algebraic operations such as conjunction (AND
, &
, *
), disjunction (OR
, |
, +
), equivalence (EQV
, =
, ==
), exclusive or/non-equivalence (XOR
, NEQV
, ^
, !=
, ¬
), and negation (NOT
, ~
, !
, ¬
).
In some languages, like Ruby, Smalltalk, and Alice the true and false values belong to separate classes, e.g., True
and False
, respectively, so there is no one Boolean type.
In SQL, which uses a three-valued logic for explicit comparisons because of its special treatment of Nulls, the Boolean data type (introduced in SQL:1999) is also defined to include more than two truth values, so that SQL Booleans can store all logical values resulting from the evaluation of predicates in SQL. A column of Boolean type can be restricted to just TRUE
and FALSE
though.
Language-specific implementations
= ALGOL and the built-in BOOLEAN type =
One of the earliest programming languages to provide an explicit BOOLEAN
data type is ALGOL 60 (1960) with values true and false and logical operators denoted by symbols '' (and), '' (or), '' (implies), '' (equivalence), and '' (not). Due to input device and character set limits on many computers of the time, however, most compilers used alternative representations for many of the operators, such as AND
or 'AND'
.
This approach with BOOLEAN
as a built-in (either primitive or otherwise predefined) data type was adopted by many later programming languages, such as Simula 67 (1967), ALGOL 68 (1970),{{cite web |url=http://www.fh-jena.de/~kleine/history/languages/Algol68-Report.pdf |title=Report on the Algorithmic Language ALGOL 68, Section 10.2.2. |date=August 1968 |access-date=30 April 2007 |url-status=live |archive-url=https://web.archive.org/web/20080406061108/http://www.fh-jena.de/~kleine/history/languages/Algol68-Report.pdf |archive-date=6 April 2008 }} Pascal (1970), Ada (1980), Java (1995), and C# (2000), among others.
= C, C++, D, Objective-C, AWK =
Initial implementations of the language C (1972) provided no Boolean type, and to this day Boolean values are commonly represented by integers (int
s) in C programs. The comparison operators (>
, ==
, etc.) are defined to return a signed integer (int
) result, either 0 (for false) or 1 (for true). Logical operators (&&
, ||
, !
, etc.) and condition-testing statements (if
, while
) assume that zero (and hence a NULL pointer or a null string terminator '\0' also) is false and all other values are true.
After enumerated types (enum
s) were added to the American National Standards Institute version of C, ANSI C (1989), many C programmers got used to defining their own Boolean types as such, for readability reasons. However, enumerated types are equivalent to integers according to the language standards; so the effective identity between Booleans and integers is still valid for C programs.
Standard C (since C99) provides a Boolean type, called _Bool
. Since C23, the Boolean is now a core data type called bool
, with values true
and false
(previously these was provided by macros from the header stdbool.h
, which is now obsolete). The language guarantees that any two true values will compare equal (which was impossible to achieve before the introduction of the type). Boolean values still behave as integers, can be stored in integer variables, and used anywhere integers would be valid, including in indexing, arithmetic, parsing, and formatting. This approach (Boolean values are just integers) has been retained in all later versions of C. Note, that this does not mean that any integer value can be stored in a Boolean variable.
C++ has had the Boolean data type bool
since C++98, but with automatic conversions from scalar and pointer values that are very similar to those of C. This approach was adopted also by many later languages, especially by some scripting languages such as AWK.
The D programming language has a proper Boolean data type bool
. The bool
type is a byte-sized type that can only hold the value true or false.
The only operators that can accept operands of type bool are: &, |, ^, &=, |=, ^=, !, &&, || and ?:.
A bool
value can be implicitly converted to any integral type, with false becoming 0 and true becoming 1.
The numeric literals 0 and 1 can be implicitly converted to the bool values false and true, respectively. Casting an expression to bool
means testing for 0 or !=0 for arithmetic types, and null or !=null for pointers or references.
Objective-C also has a separate Boolean data type BOOL
, with possible values being YES
or NO
, equivalents of true and false respectively.{{cite web|url=https://developer.apple.com/library/ios/#documentation/cocoa/conceptual/ProgrammingWithObjectiveC/FoundationTypesandCollections/FoundationTypesandCollections.html|title=Guides and Sample Code|website=developer.apple.com|access-date=1 May 2018|url-status=live|archive-url=https://web.archive.org/web/20110907013839/http://developer.apple.com/library/iOS/#documentation/cocoa/conceptual/ProgrammingWithObjectiveC/FoundationTypesandCollections/FoundationTypesandCollections.html|archive-date=7 September 2011}} Also, in Objective-C compilers that support C99, C's _Bool
type can be used, since Objective-C is a superset of C.
= Forth =
Forth (programming language) has no Boolean type, it uses regular integers: value 0 (all bits low) represents false, and -1 (all bits high) represents true. This allows the language to define only one set of logical operators, instead of one for mathematical calculations and one for conditions.{{Cite web|date=2022-02-11|title=4. Decisions, Decisions...|url=https://www.forth.com/starting-forth/4-conditional-if-then-statements/|access-date=2022-02-11|website=Forth Inc.|language=en-US}}
= Fortran =
The first version of FORTRAN (1957) and its successor FORTRAN II (1958) have no logical values or operations; even the conditional IF
statement takes an arithmetic expression and branches to one of three locations according to its sign; see arithmetic IF. FORTRAN IV (1962), however, follows the ALGOL 60 example by providing a Boolean data type (LOGICAL
), truth literals (.TRUE.
and .FALSE.
), logical IF
statement, Boolean-valued numeric comparison operators (.EQ.
, .GT.
, etc.), and logical operators (.NOT.
, .AND.
, .OR.
, .EQV.
, and .NEQV.
). In FORMAT
statements, a specific format descriptor ('L
') is provided for the parsing or formatting of logical values.Digital Equipment Corporation, DECSystem10 FORTRAN IV Programmers Reference Manual. Reprinted in Mathematical Languages Handbook. [http://www.bitsavers.org/pdf/tymshare/tymcom-x/Tymcom-X_Reference_Series_Fortran_IV_Jan73.pdf Online version] {{webarchive|url=https://web.archive.org/web/20110814003524/http://www.bitsavers.org/pdf/tymshare/tymcom-x/Tymcom-X_Reference_Series_Fortran_IV_Jan73.pdf |date=2011-08-14 }} accessed 2011-11-16. Fortran 90 added alternative comparison operators <
, <=
, ==
, /=
, >
, and >=
.
= Java =
In Java, the value of the boolean
data type can only be either true
or false
.{{cite web | title=Java Booleans | website=W3Schools Online Web Tutorials | url=https://www.w3schools.com/java/java_booleans.asp | access-date=2021-02-17}}
= Lisp and Scheme =
The language Lisp (1958) never had a built-in Boolean data type. Instead, conditional constructs like cond
assume that the logical value false is represented by the empty list ()
, which is defined to be the same as the special atom nil
or NIL
; whereas any other s-expression is interpreted as true. For convenience, most modern dialects of Lisp predefine the atom t
to have value t
, so that t
can be used as a mnemonic notation for true.
This approach (any value can be used as a Boolean value) was retained in most Lisp dialects (Common Lisp, Scheme, Emacs Lisp), and similar models were adopted by many scripting languages, even ones having a distinct Boolean type or Boolean values; although which values are interpreted as false and which are true vary from language to language. In Scheme, for example, the false value is an atom distinct from the empty list, so the latter is interpreted as true. Common Lisp, on the other hand, also provides the dedicated boolean
type, derived as a specialization of the symbol.{{Cite web|url=http://www.lispworks.com/documentation/lw50/CLHS/Body/t_ban.htm|title = CLHS: Type BOOLEAN}}
= Pascal, Ada, and Haskell =
The language Pascal (1970) popularized the concept of programmer-defined enumerated types, previously available with different nomenclature in COBOL, FACT and JOVIAL. A built-in Boolean
data type was then provided as a predefined enumerated type with values FALSE
and TRUE
. By definition, all comparisons, logical operations, and conditional statements applied to and/or yielded Boolean
values. Otherwise, the Boolean
type had all the facilities which were available for enumerated types in general, such as ordering and use as indices. In contrast, converting between Boolean
s and integers (or any other types) still required explicit tests or function calls, as in ALGOL 60. This approach (Boolean is an enumerated type) was adopted by most later languages which had enumerated types, such as Modula, Ada, and Haskell.
= Perl and Lua =
Perl has no Boolean data type. Instead, any value can behave as Boolean in Boolean context (condition of if
or while
statement, argument of &&
or ||
, etc.). The number 0
, the strings "0"
and ""
, the empty list ()
, and the special value undef
evaluate to false.{{cite web |url=http://perldoc.perl.org/perlsyn.html#Truth-and-Falsehood |title=perlsyn - Perl Syntax / Truth and Falsehood |access-date=10 September 2013 |url-status=live |archive-url=https://web.archive.org/web/20130826100652/http://perldoc.perl.org/perlsyn.html#Truth-and-Falsehood |archive-date=26 August 2013 }} All else evaluates to true.
Lua has a Boolean data type, but non-Boolean values can also behave as Booleans. The non-value nil
evaluates to false, whereas every other data type value evaluates to true. This includes the empty string ""
and the number 0
, which are very often considered false
in other languages.
= PL/I =
PL/I has no Boolean data type. Instead, comparison operators generate BIT(1) values; '0'B represents false and '1'B represents true. The operands of, e.g., &
, |
, ¬
, are converted to bit strings and the operations are performed on each bit. The element-expression of an IF
statement is true if any bit is 1.
= Python and Ruby =
{{further|Truthy (computing)}}
Python, from version 2.3 forward, has a bool
type which is a subclass of int
, the standard integer type.{{cite web |last= van Rossum |first= Guido |author-link= Guido van Rossum |title= PEP 285 -- Adding a bool type |date= 3 April 2002 |url= https://www.python.org/dev/peps/pep-0285/ |access-date= 15 May 2013 |url-status= live |archive-url= https://web.archive.org/web/20130501225326/http://www.python.org/dev/peps/pep-0285/ |archive-date= 1 May 2013 }} It has two possible values: True
and False
, which are special versions of 1 and 0 respectively and behave as such in arithmetic contexts. Also, a numeric value of zero (integer or fractional), the null value (None
), the empty string, and empty containers (lists, sets, etc.) are considered Boolean false; all other values are considered Boolean true by default.{{cite web |url= https://docs.python.org/3.3/reference/expressions.html |title= Expressions |website= Python v3.3.2 documentation |access-date= 15 May 2013 |url-status= live |archive-url= https://web.archive.org/web/20130522082703/http://docs.python.org/3.3/reference/expressions.html |archive-date= 22 May 2013 }} Classes can define how their instances are treated in a Boolean context through the special method __nonzero__
(Python 2) or __bool__
(Python 3). For containers, __len__
(the special method for determining the length of containers) is used if the explicit Boolean conversion method is not defined.
In Ruby, in contrast, only nil
(Ruby's null value) and a special false
object are false; all else (including the integer 0 and empty arrays) is true.
= Rexx =
Rexx has no Boolean data type. Instead, comparison operators generate 0 or 1; 0 represents false and 1 represents true. The operands of, e.g., &
, |
, ¬
, must be 0 or 1.
= SQL =
{{main|Null (SQL)#Comparisons with NULL and the three-valued logic (3VL)}}
Booleans appear in SQL when a condition is needed, such as {{mono|WHERE}} clause, in form of predicate which is produced by using operators such as comparison operators, {{mono|IN}} operator, {{mono|IS (NOT) NULL}} etc. However, apart from {{mono|TRUE}} and {{mono|FALSE}}, these operators can also yield a third state, called {{mono|UNKNOWN}}, when comparison with {{NULL}} is made.
The SQL92 standard introduced {{mono|IS (NOT) TRUE, IS (NOT) FALSE,}} and {{mono|IS (NOT) UNKNOWN}} operators which evaluate a predicate, which predated the introduction of Boolean type in SQL:1999.
The SQL:1999 standard introduced a {{mono|BOOLEAN}} data type as an optional feature (T031). When restricted by a {{mono|1=NOT NULL}} constraint, a SQL {{mono|BOOLEAN}} behaves like Booleans in other languages, which can store only {{mono|TRUE}} and {{mono|FALSE}} values. However, if it is nullable, which is the default like all other SQL data types, it can have the special null value also. Although the SQL standard defines three literals for the {{mono|BOOLEAN}} type – {{mono|TRUE, FALSE,}} and {{mono|UNKNOWN}} {{--}} it also says that the {{mono|NULL BOOLEAN}} and {{mono|UNKNOWN}} "may be used interchangeably to mean exactly the same thing".{{cite book|author=C. Date|title=SQL and Relational Theory: How to Write Accurate SQL Code|url=https://books.google.com/books?id=Ew06OZtjuJEC&pg=PA83|year=2011|publisher=O'Reilly Media, Inc.|isbn=978-1-4493-1640-2|page=83}}ISO/IEC 9075-2:2011 §4.5 This has caused some controversy because the identification subjects {{mono|UNKNOWN}} to the equality comparison rules for NULL. More precisely {{code|UNKNOWN {{=}} UNKNOWN}} is not {{mono|TRUE}} but {{mono|UNKNOWN/NULL}}.{{cite book|author=Martyn Prigmore|title=Introduction to Databases With Web Applications|url=https://books.google.com/books?id=PKggKqIZnN0C&pg=PA197|year=2007|publisher=Pearson Education Canada|isbn=978-0-321-26359-9|page=197}} As of 2012 few major SQL systems implement the T031 feature.Troels Arvin, [http://troels.arvin.dk/db/rdbms/#data_types-boolean Survey of BOOLEAN data type implementation] {{webarchive|url=https://web.archive.org/web/20050309010315/http://troels.arvin.dk/db/rdbms/ |date=2005-03-09 }} Firebird and PostgreSQL are notable exceptions, although PostgreSQL implements no {{mono|UNKNOWN}} literal; {{NULL}} can be used instead.{{cite web|url=http://www.postgresql.org/docs/current/static/datatype-boolean.html|title=PostgreSQL: Documentation: 10: 8.6. Boolean Type|website=www.postgresql.org|access-date=1 May 2018|url-status=live|archive-url=https://web.archive.org/web/20180309053449/https://www.postgresql.org/docs/current/static/datatype-boolean.html|archive-date=9 March 2018}}
The treatment of Boolean values differs between SQL systems.
For example, in Microsoft SQL Server, Boolean value is not supported at all, neither as a standalone data type nor representable as an integer. It shows the error message "An expression of non-Boolean type specified in a context where a condition is expected" if a column is directly used in the {{mono|WHERE}} clause, e.g. {{code|1=SELECT a FROM t WHERE a|2=tsql}}, while a statement such as {{code|1=SELECT column IS NOT NULL FROM t|2=tsql}} yields a syntax error. The {{mono|BIT}} data type, which can only store integers 0 and 1 apart from {{mono|NULL}}, is commonly used as a workaround to store Boolean values, but workarounds need to be used such as {{code|1=UPDATE t SET flag = IIF(col IS NOT NULL, 1, 0) WHERE flag = 0|2=tsql}} to convert between the integer and Boolean expression.
Microsoft Access, which uses the Access Database Engine (ACE/JET),{{Cite web|title=Migrate an Access database to SQL Server|url=https://support.microsoft.com/en-us/office/migrate-an-access-database-to-sql-server-7bac0438-498a-4f53-b17b-cc22fc42c979|access-date=2020-10-19|website=support.microsoft.com|language=en-US}} also does not have a Boolean data type.
Similar to MS SQL Server, it uses a {{mono|BIT}} data type.{{Cite web|last=o365devx|title=SQL data types (Access desktop database reference)|url=https://docs.microsoft.com/en-us/office/client-developer/access/desktop-database-reference/sql-data-types|access-date=2020-10-19|website=docs.microsoft.com|language=en-us}} In Access it is known as a Yes/No data type{{Cite web|title=Introduction to data types and field properties|url=https://support.microsoft.com/en-us/office/introduction-to-data-types-and-field-properties-30ad644f-946c-442e-8bd2-be067361987c|access-date=2020-10-19|website=support.microsoft.com|language=en-US}} which can have two values; Yes (True) or No (False).
The BIT data type in Access can also be represented numerically:
True is −1 and False is 0.{{Cite web|title=Boolean Data - MS-Access Tutorial|url=https://sourcedaddy.com/ms-access/boolean-data.html|access-date=2020-10-19|website=sourcedaddy.com}}
This differs from MS SQL Server in two ways, even though both are Microsoft products:
- Access represents {{mono|TRUE}} as −1, while it is 1 in SQL Server
- Access does not support the Null tri-state, supported by SQL Server
PostgreSQL has a distinct {{mono|BOOLEAN}} type as in the standard,{{Cite web|url=https://www.postgresql.org/docs/9.1/datatype-boolean.html|title = Boolean Type|date = 27 October 2016}} which allows predicates to be stored directly into a {{mono|BOOLEAN}} column, and allows using a {{mono|BOOLEAN}} column directly as a predicate in a {{mono|WHERE}} clause.
In MySQL, {{mono|BOOLEAN}} is treated as an alias of {{code|TINYINT(1)|mysql}};{{cite web |url=https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html |title=MySQL :: MySQL 8.0 Reference Manual :: 12.1.1 Numeric Type Overview |website=dev.mysql.com |url-status=dead |archive-url=https://web.archive.org/web/20160922212232/http://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html |archive-date=2016-09-22}}
{{mono|TRUE}} is the same as integer 1 and {{mono|FALSE}} is the same as integer 0.{{Cite web|url=https://dev.mysql.com/doc/refman/8.0/en/boolean-literals.html|title=MySQL :: MySQL 8.0 Reference Manual :: 9.1.6 Boolean Literals|website=dev.mysql.com}}
Any non-zero integer is true in conditions.
= Tableau =
Tableau Software has a BOOLEAN data type.{{Cite web|title=Data Types|url=https://help.tableau.com/current/pro/desktop/en-us/datafields_typesandroles_datatypes.htm|access-date=2020-10-19|website=help.tableau.com|language=en-us}} The literal of a Boolean value is True
or False
.{{Cite web|title=Formatting Calculations in Tableau|url=https://help.tableau.com/current/pro/desktop/en-us/functions_operators.htm#literal-expression-syntax|access-date=2020-10-19|website=help.tableau.com|language=en-us}}
The Tableau INT()
function converts a Boolean to a number, returning 1 for True and 0 for False.{{Cite web|date=2020-09-11|title=Boolean makes Tableau faster - true or false?|url=https://tarsolutions.co.uk/blog/tableau-boolean-data-type/|access-date=2020-10-19|website=TAR Solutions|language=en-US}}
= Tcl =
Tcl has no separate Boolean type. Like in C, the integers 0 (false) and 1 (true—in fact any nonzero integer) are used.
{{cite web |title= PEP 285 -- Adding a bool type |date= 4 May 2011 |url= https://wiki.tcl.tk/16235 |access-date= 28 March 2018 |url-status= live |archive-url= https://web.archive.org/web/20180328231245/https://wiki.tcl.tk/16235 |archive-date= 28 March 2018 }}
Examples of coding:
{{sxhl|2=tcl|
set v 1
if { $v } { puts "V is 1 or true" }
}}
The above will show {{samp|V is 1 or true}} since the expression evaluates to 1.
{{sxhl|2=tcl|
set v ""
if { $v } ....
}}
The above will render an error, as variable {{mono|v}} cannot be evaluated as 0 or 1.
Truthy
{{excerpt|Truth value#Computing}}
See also
References
{{Reflist|2}}
{{Data types}}