在C# 5.0 in a Nutshell中的 C# 主题的转换(第 2 章)中,作者说:
...转换可以是隐式的或显式的:隐式转换会自动发生,而显式转换需要强制转换。在下面的示例中,我们将int隐式转换为long类型(其按位容量是int的两倍)...
这是一个例子:
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
位容量和位容量之间有关系吗?或者,作者对按位容量的看法是什么?