如何在 Java 中返回一个临时 int 数组

How to return a temporary int array in Java(如何在 Java 中返回一个临时 int 数组)

本文介绍了如何在 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 数组

基础教程推荐