gpt4 book ai didi

JavaScript 数据结构、JS 中的 ArrayList(Java)

转载 作者:行者123 更新时间:2023-11-28 19:24:29 24 4
gpt4 key购买 nike

我正在使用 Java 开发游戏,现在正在开发多人模式。服务器端程序是用node.js编写的,客户端程序是用java编写的。我的问题是关于 JavaScript 数据结构。在Java中我不能做这样的事情

ArrayList<Room> rooms = new ArrayList<Room>();

这是 Room,其中包含一些数据。

public class Room(){
//Here is data about the room (clients number,clients names etc.)
}

我需要一个类似于 JavaScript 中的 ArrayList 的数据结构。

最佳答案

在 Javascript 中,数组可以动态调整大小(无需 ArrayList)。例如,push() 的文档阅读(部分)

The push() method adds new items to the end of an array, and returns the new length.

你可能会这样使用它

var arr = new Array();
arr.push(1);
document.getElementById("out").innerHTML += arr + "<br>";
arr.push(2);
document.getElementById("out").innerHTML += arr;
<div id="out">
</div>

关于JavaScript 数据结构、JS 中的 ArrayList(Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28135244/

24 4 0