gpt4 book ai didi

java - 如何创建在 JOptionPane 中打印数组的方法

转载 作者:行者123 更新时间:2023-12-01 10:55:18 25 4
gpt4 key购买 nike

我在尝试创建一种方法来在一个而不是多个对话框上的 JOPtionPane 中打印数组时遇到了麻烦,我也很难打印数组的实际内容,并且相反,我只能打印数组的地址。到目前为止,我的代码如下,我不确定如何推进它,以便我可以使用 JOptionPane 打印我的数组。感谢所有建议和更正。

public static void printArray(int [] array)
{
for (int i=0; i<array.length; i++)
{
JOptionPane.showInputDialog(null, array[i]);
}
}

最佳答案

首先将数组的元素作为字符串连接起来:

private static String joinArray(int[] array)
{
StringBuilder sb = new StringBuilder();
for (int i = 0; i < array.length; i++)
{
if (i > 0)
{
sb.append(", ");
}
sb.append(array[i]);
}
return sb.toString();
}

public static void printArray(int[] array)
{
JOptionPane.showInputDialog(null, joinArray(array));
}

关于java - 如何创建在 JOptionPane 中打印数组的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33637619/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com