gpt4 book ai didi

java - 将数组的内容向下推

转载 作者:行者123 更新时间:2023-12-02 04:09:37 25 4
gpt4 key购买 nike

如果我有一个大小为 4 的数组,如下所示:int[] array = new int[4];我有

TextField text1 = new TextField();
TextField text2 = new TextField();
TextField text3 = new TextField();
TextField text4 = new TextField();

其中text1显示包含array [0]text2 显示包含 array [1]text3 显示包含 array [2]text4 显示包含 array [3]

如果我想推送 array [0] 的包含内容至array [1]并在我的文本字段中显示,我该怎么做?谢谢

最佳答案

简单:

index[2] = index[1];
index[1] = index[0];

你可以使用for循环,如果数组中有很多索引,它会产生计数器。

之后,textField.setText(index[wantedIndex]);

关于java - 将数组的内容向下推,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33916818/

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