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 数组
基础教程推荐
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01