翻訳と辞書
Words near each other
・ bitmap display
・ bitmap font
・ bitmapped display
・ bitnet
・ bitonal image
・ bits per inch
・ bits per pixel
・ bits per second
・ bittorrent
・ bitty box
bitwise
・ bitwise complement
・ bixie
・ biz-core stability
・ bj
・ bjarne stroustrup
・ bjc4000
・ black art
・ black box
・ black data processing associates


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

bitwise : FOLDOC
bitwise
A bitwise operator treats its operands as a vector of bits rather than a single number. Boolean bitwise operators combine bit N of each operand using a Boolean function (NOT, AND, OR, XOR) to produce bit N of the result.
For example, a bitwise AND operator ("&" in C) would evaluate 13 & 9 as (binary) 1101 & 1001 = 1001 = 9, whereas, the logical AND, (C "&&") would evaluate 13 && 9 as TRUE && TRUE = TRUE = 1.
In some languages, e.g. Acorn's BASIC V, the same operators are used for both bitwise and logical operations. This usually works except when applying NOT to a value x which is neither 0 (false) nor -1 (true), in which case both x and (NOT x) will be non-zero and thus treated as TRUE.
Other operations at the bit level, which are not normally described as "bitwise" include shift and rotate.
(1995-05-12)



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

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