Passing char into a method with an int parameter(将 char 传递给带有 int 参数的方法)
问题描述
以下代码的输出是 123
因为 substring
从 beginIndex 到 EndIndex - 1.但是,我很惊讶 char
在这里被理解为 3 (int) 因为 substring
需要两个整数.这背后的概念是什么?
The output from the following code is 123
because substring
takes from beginIndex to EndIndex - 1. However, I am surprised how char
here is understood as 3 (int) because substring
take two ints. What is the concept behind this?
String x = "12345";
char a = 3;
x = x.substring(0, a);
System.out.println(x);
推荐答案
这可以追溯到 C,其中 char
本质上是一种窄整数类型,并在必要时隐式转换为 int
.
This goes all the way back to C, where char
is in essence a narrow integer type and gets implicitly converted to int
whenever necessary.
在 Java 中,这在技术上称为扩展原语转换",并在 JLS 的第 5.1.2 节.
In Java, this is technically known as a "widening primitive conversion", and is covered in section 5.1.2 of the JLS.
这篇关于将 char 传递给带有 int 参数的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 char 传递给带有 int 参数的方法
基础教程推荐
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01