2011年3月20日日曜日

Erlang Bit Strings と Binary

過去にも同様の記事を書いているが気にしない。


2.4  Bit Strings and Binaries
(Bit 文字列とバイナリ)

A bit string is used to store an area of untyped memory.
(bit 文字は型のないメモリ領域に保存するのに使われる)

Bit Strings are expressed using the bit syntax.
(Bit 文字列はBit構文を使って表現される。)

Bit Strings which consists of a number of bits which is evenly divisible by eight are called Binaries
(8で割り切れるBit 文字列はバイナリと呼ばれる。)

Examples:

1> <<10,20>>.
<<10,20>>
2> <<"ABC">>.
<<"ABC">>
1> <<1:1,0:1>>.
<<2:2>>

More examples can be found in Programming Examples.
(その他の参考例はプログラミング例で見つけられる。)

0 件のコメント:

コメントを投稿