Can assign integer value to char but can#39;t assign integer variable to char(可以将整数值分配给 char 但不能将整数变量分配给 char)
问题描述
为什么下面的代码编译不出来
Why doesn't the following code compile
int n = 5;
char c = n;
但以下确实编译
char c = 5;
我不是在这两种情况下都给 char 分配了一个整数值吗?
Aren't I just assigning an integer value to char in both cases?
推荐答案
可以将 char
分配给 int
而无需强制转换,因为这是一种扩大转换.反过来,将 int
转换为 char
需要强制转换,因为它是一种缩小转换.
A char
can be assigned to an int
without a cast because that is a widening conversion. To do the reverse, an int
to a char
requires a cast because it is a narrowing conversion.
另请参阅 JLS.第 5 章.转化和促销.
这篇关于可以将整数值分配给 char 但不能将整数变量分配给 char的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:可以将整数值分配给 char 但不能将整数变量分配


- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 转换 ldap 日期 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 获取数字的最后一位 2022-01-01