0
など:バイトをファイルに書き込むときにCPythonで "&0xff"を使用する理由は何ですか?
static void w_long(long x, WFILE *p)
{
w_byte((char)(x & 0xff), p);
w_byte((char)((x>> 8) & 0xff), p);
w_byte((char)((x>>16) & 0xff), p);
w_byte((char)((x>>24) & 0xff), p);
}
そしてPYCファイルが読めない理由を、constのテキスト/文字列がありますか?
可能な複製(http://stackoverflow.com/questions/10493411/what-is-bit-masking) –
あなたの第二例:
質問は理解しにくいです。とにかく質問ごとに1つの質問をする必要があります。 –