#Python には char 型がなく、文字も文字列です。
Python には特別な char データ型がないのはなぜですか?
単純なほうが複雑なデータ型より優れています。 Python では、文字列内の各文字が占めるスペースは 8 ビットです。
>>> import sys >>> sys.getsizeof('') 37 >>> sys.getsizeof('a') 38
ご覧のとおり、NULL 文字は 37 バイトを占め、長さは 8 ビットです。値 1 の文字列 'a' は、38 バイトのメモリを占有します。文字 a が 1 つ増えると、バイトが 1 つ増えます。
#Python 内部では、文字列は次のように実装されます
typedef struct { PyObject_VAR_HEAD long ob_shash; int ob_sstate; char ob_sval[1]; /* Invariants: * ob_sval contains space for 'ob_size+1' elements. * ob_sval[ob_size] == 0. * ob_shash is the hash of the string or -1 if not computed yet. * ob_sstate != 0 iff the string object is in stringobject.c's * 'interned' dictionary; in this case the two references * from 'interned' to this object are *not counted* in ob_refcnt. */ } PyStringObject;各文字は ob_sval に保存され、サイズは 8 ビットになります。残りの 36 バイトは主にマクロ PyObject_VAR_HEAD から来ます。実際、Python の文字列実装では *interned というグローバル変数も使用されます。 0 または 1 の文字列、つまり char を使用すると、スペースを節約して高速化できます。
/* This dictionary holds all interned strings. Note that references to strings in this dictionary are *not* counted in the string's ob_refcnt. When the interned string reaches a refcnt of 0 the string deallocation function will delete the reference from this dictionary. Another way to look at this is that to say that the actual reference count of a string is: s->ob_refcnt + (s->ob_sstate?2:0) */ static PyObject *interned;
実際には、ポインタも「裸」もありません。 " Python の「データ構造」(非オブジェクト)、最も単純な整数でもこの方法で実装されます
typedef struct { PyObject_HEAD long ob_ival; } PyIntObject;
つまり、この設計は Python の "すべては「オブジェクトである」、そしてデザイン哲学は「すべては可能な限りシンプルであるべきである」です。
以上がPython には char 型がありますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。