java中array_push的等效代码是什么?

发布于 2024-12-25 20:56:41 字数 312 浏览 1 评论 0原文

大家好,我需要这个 PHP 代码的等效 java 代码:

<?php
  $stack = array("orange", "banana");
  array_push($stack, "apple", "raspberry");
  print_r($stack);
?>

输出是:

Array
(
    [0] => orange
    [1] => banana
    [2] => apple
    [3] => raspberry
)

Hi guys I need the equivalent java code of this PHP code:

<?php
  $stack = array("orange", "banana");
  array_push($stack, "apple", "raspberry");
  print_r($stack);
?>

the Output is:

Array
(
    [0] => orange
    [1] => banana
    [2] => apple
    [3] => raspberry
)

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

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

发布评论

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

评论(3

诗化ㄋ丶相逢 2025-01-01 20:56:41

您必须使用ArrayList

List<String> list = new ArrayList<String>();
list.add("orange");
list.add("banana");

You have to use a ArrayList.

List<String> list = new ArrayList<String>();
list.add("orange");
list.add("banana");
带刺的爱情 2025-01-01 20:56:41

这就是 ArrayList 的 add(Element) 方法。

对于数组,您必须手动说出哪个索引、哪个元素:

String[] word = new String[5];
word[4] = "raspberry";

或者

String[] word = {"orange","banana","raspberry","srtrawberry"};

That would be add(Element) method for an ArrayList.

For an array, you have to manually say at which index, what element:

String[] word = new String[5];
word[4] = "raspberry";

Or

String[] word = {"orange","banana","raspberry","srtrawberry"};
魂ガ小子 2025-01-01 20:56:41

这将是一个近似的等价物:

import java.util.*;

List stack = new ArrayList(Arrays.asList("orange", "banana"));
Collections.addAll(stack, "apple", "raspberry");
System.out.println(stack);

This would be a close equivalent:

import java.util.*;

List stack = new ArrayList(Arrays.asList("orange", "banana"));
Collections.addAll(stack, "apple", "raspberry");
System.out.println(stack);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文