1

C# 5.0 in a Nutshell のC # トピックのConversions (第 2 章) で、著者は次のように述べています。

...変換は暗黙的または明示的のいずれかです。暗黙的な変換は自動的に行われ、明示的な変換にはキャストが必要です。次の例では、暗黙的にintlong型に変換します (これは、 intのビット単位の容量が 2 倍になります)...

これは例です:

int x = 12345;      // int is a 32-bit integer
long y = x;         // Implicit conversion to 64-bit integer
short z = (short)x; // Explicit conversion to 16-bit integer

ビット単位の容量とビット容量の間に関係はありますか? または、ビット単位の容量に関する著者のポイントは何ですか?

4

3 に答える 3