Python の組み込み bytearray 関数の詳細な紹介

高洛峰
リリース: 2017-03-21 11:23:41
オリジナル
1828 人が閲覧しました

英文文档:

class bytearray([ソースbytearray([source[, encoding[, errors]]])

Return a new array of bytes. The bytearray class is a mutable sequence of integers in the range 0 <= x < 256. It has most of the usual methods of mutable sequences, described in Mutable Sequence Types, as well as most methods that the bytes type has, see Bytes and Bytearray Operations.

The optional source parameter can be used to initialize the array in a few different ways:

  • If it is a string, you must also give the encoding (and optionally, errors) parameters; bytearray() then converts the string to bytes using str.encode().

  • If it is an integer, the array will have that size and will be initialized with null bytes.

  • If it is an object conforming to the buffer interface, a read-only buffer of the object will be used to initialize the bytes array.

  • If it is an iterable, it must be an iterable of integers in the range <span class="pre" style="margin: 0px; padding: 0px;">0 <span class="pre" style="margin: 0px; padding: 0px;"><= <span class="pre" style="margin: 0px; padding: 0px;">x <span class="pre" style="margin: 0px; padding: 0px;">< <span class="pre" style="margin: 0px; padding: 0px;">256</span></span></span></span></span>[,エンコーディング

    [,エラー
  • ]]])

新しい配列を返しますバイト。 bytearray クラスは、0 可変シーケンスのタイプで説明されている可変シーケンスの通常のメソッドのほとんどと、 bytes 型には、Bytes および Bytearray 操作を参照してください。

オプションsource

パラメータを使用して、いくつかの異なる方法で配列を初期化できます:🎜
  • 文字列🎜 の場合は、エンコーディング🎜 (およびオプションでエラー🎜) パラメータ; bytearray() は、str.encode().🎜🎜

  • integer🎜 の場合、配列はそのサイズになり、null バイトで初期化されます。🎜🎜

  • padding: 0px;">buffer🎜 インターフェイスでは、オブジェクトの読み取り専用バッファがバイト配列の初期化に使用されます。🎜🎜

  • iterable🎜、<span class="pre" style="margin: 0px;パディング: 0px;">0 <span class="pre" style="margin: 0px;パディング: 0px;"><= <span class="pre" style="margin: 0px;パディング: 0px;">x <span class="pre" style="margin: 0px;パディング: 0px;">< <span class="pre" style="margin: 0px; padding: 0px;">256</span></span></span></span></span>、配列の初期内容として使用されます。🎜🎜🎜🎜引数なし、サイズ 0 の配列が作成されます。🎜🎜说明:🎜

    1. 戻り値は新しいバイト配列です

    2. 3 つのパラメータのいずれも渡されない場合、長さ 0 のバイト配列が返されます

    >>> b = bytearray()
    >>> b
    bytearray(b&#39;&#39;)
    >>> len(b)
    0
    ログイン後にコピー

    3. ソースパラメータが文字列の場合、エンコーディングパラメータ 関数が str.encode メソッドを使用して文字列をバイト配列に変換することも指定する必要があります

    >>> bytearray(&#39;中文&#39;)
    Traceback (most recent call last):
      File "<pyshell#48>", line 1, in <module>
        bytearray(&#39;中文&#39;)
    TypeError: string argument without an encoding
    >>> bytearray(&#39;中文&#39;,&#39;utf-8&#39;)
    bytearray(b&#39;\xe4\xb8\xad\xe6\x96\x87&#39;)
    ログイン後にコピー

    4. ソースパラメータが整数の場合、これで指定された長さの空のバイト配列を返しますinteger

    >>> bytearray(2)
    bytearray(b&#39;\x00\x00&#39;)
    >>> bytearray(-2) #整数需大于0,使用来做数组长度的
    Traceback (most recent call last):
      File "<pyshell#51>", line 1, in <module>
        bytearray(-2)
    ValueError: negative count
    ログイン後にコピー

    5. ソースパラメータがバッファインターフェイスを実装するオブジェクトである場合、バイトは読み取り専用モードでバイト配列に読み込まれ、ソースパラメータが返されます。が反復可能オブジェクトの場合、これは配列

    >>> bytearray([1,2,3])
    bytearray(b&#39;\x01\x02\x03&#39;)
    >>> bytearray([256,2,3]) #不在0-255范围内报错
    Traceback (most recent call last):
      File "<pyshell#53>", line 1, in <module>
        bytearray([256,2,3])
    ValueError: byte must be in range(0, 256)
    ログイン後にコピー
    に初期化できるように、反復可能オブジェクトの要素は 0

以上がPython の組み込み bytearray 関数の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!