How do I convert from int to Long in Java?(如何在 Java 中将 int 转换为 Long?)
问题描述
我一直在这里和谷歌上发现从 long
到 int
而不是相反的问题.但我确信在从 int
到 Long
之前遇到这种情况的人不止我一个.
I keep finding both on here and Google people having troubles going from long
to int
and not the other way around. Yet I'm sure I'm not the only one that has run into this scenario before going from int
to Long
.
我发现的唯一其他答案是首先将其设置为 Long",这确实没有解决问题.
The only other answers I've found were "Just set it as Long in the first place" which really doesn't address the question.
我最初尝试强制转换,但得到Cannot cast from int to Long
"
I initially tried casting but I get a "Cannot cast from int to Long
"
for (int i = 0; i < myArrayList.size(); ++i ) {
content = new Content();
content.setDescription(myArrayList.get(i));
content.setSequence((Long) i);
session.save(content);
}
你可以想象我有点困惑,我被困在使用 int
因为一些内容是作为一个 ArrayList
和我的实体进入的m 存储此信息需要序列号为 Long.
As you can imagine I'm a little perplexed, I'm stuck using int
since some content is coming in as an ArrayList
and the entity for which I'm storing this info requires the sequence number as a Long.
推荐答案
请注意,转换为 long
和转换为 Long
之间存在差异.如果你转换成 long
(一个原始值),那么它应该被自动装箱成一个 Long
(包装它的引用类型).
Note that there is a difference between a cast to long
and a cast to Long
. If you cast to long
(a primitive value) then it should be automatically boxed to a Long
(the reference type that wraps it).
您也可以使用 new
创建 Long
的实例,并使用 int
值对其进行初始化.
You could alternatively use new
to create an instance of Long
, initializing it with the int
value.
这篇关于如何在 Java 中将 int 转换为 Long?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Java 中将 int 转换为 Long?


- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01