Java:打印出args数组中的所有整数

发布于 2024-11-28 23:46:58 字数 261 浏览 1 评论 0原文

如何从 Java 中的 args 变量打印一组整数?

我尝试过:

System.out.println("The numbers are " + args.length);

但所做的只是打印出数组中的元素数量。

我希望如果传递了 5 个参数: 1 2 3 4 5 输出应该是:

1, 2, 3, 4, 5

How do I print out a set of integers from my args variable in Java?

I tried:

System.out.println("The numbers are " + args.length);

But all that does is print out the number of elements in the array.

I want it so that if there are 5 arguments passed: 1 2 3 4 5 the output should be:

1, 2, 3, 4, 5

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

神妖 2024-12-05 23:46:58

如果您喜欢,请看一下。

  System.out.println("The numbers are "+Arrays.toString(args));

如果不喜欢,您将必须循环遍历数组并自行格式化。

Take a look if you like

  System.out.println("The numbers are "+Arrays.toString(args));

If not, you'll have to loop over the array and format it yourself.

极度宠爱 2024-12-05 23:46:58

尝试:

for(String arg: args)
    System.out.print(arg + " ");

Try:

for(String arg: args)
    System.out.print(arg + " ");
说不完的你爱 2024-12-05 23:46:58

但所做的只是打印出数组中的数字,而不是单独打印数字。

这似乎有些不清楚。

args.length 给出数组的长度而不是其元素。

使用 for 循环:

System.out.println("The numbers are ");

for(int i=0; i < args.length; i++)
    System.out.print(args[i] + " ");

But all that does is print out the numbers in the array not the numbers separately.

This seems to be somewhat unclear.

args.length gives the length of the array rather than its elements.

Use a for loop:

System.out.println("The numbers are ");

for(int i=0; i < args.length; i++)
    System.out.print(args[i] + " ");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文