How to return a temporary int array in Java(如何在 Java 中返回一个临时 int 数组)
问题描述
如何在 Java 中返回一个临时数组(为了节省代码行,而不创建变量).
How can I manage to return a temporary array in Java (in order to save code line, without creating a variable).
做启蒙的时候,我可以用
When doing initiation, I can use
int[] ret = {0,1};
return时,我不能使用
While when doing return, I cannot use
return {0,1};
我错过了什么还是有强制类型转换来做到这一点?
Do I miss something or is there a force typ-cast to do this?
我想到了使用 new int[]
作为下面的答案.那么,我们在初始化时不需要 new int[]
的原因是什么?
I got the idea to use new int[]
as the answers below. While, what's the reason the we don't need new int[]
when doing initiation?
推荐答案
我想到了使用 new int[] 作为下面的答案.那么,我们在初始化时不需要 new int[] 的原因是什么?
I got the idea to use new int[] as the answers below. While, what's the reason the we don't need new int[] when doing initiation?
当你写int[] ret = {0,1};
时,它本质上是写int[] ret = new int[]{0,1}; 的快捷方式.代码>.来自 doc:
When you write int[] ret = {0,1};
, it is essentially a shortcut of writing int[] ret = new int[]{0,1};
. From the doc:
或者,您可以使用快捷语法来创建和初始化数组:
Alternatively, you can use the shortcut syntax to create and initialize an array:
int[] anArray = {
100, 200, 300,
400, 500, 600,
700, 800, 900, 1000
};
现在,当您返回时,您必须明确编写 return new int[]{0,1};
因为您没有对数组进行赋值操作(根据文档创建和初始化)因此您不能使用快捷方式.您必须使用 new
创建一个对象.
Now when you return you have to explicitly write return new int[]{0,1};
because you are not doing an assignment operation(create and initialize as per the doc) to the array and hence you cannot use the shortcut. You will have to create an object using new
.
这篇关于如何在 Java 中返回一个临时 int 数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Java 中返回一个临时 int 数组
- 如何使用WebFilter实现授权头检查 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01