gpt4 book ai didi

java - J框架;首先显示 for 循环中的数组元素 [1],而不是 [0]

转载 作者:行者123 更新时间:2023-12-01 22:28:29 25 4
gpt4 key购买 nike

我起草了下面的应用程序,用于循环遍历字符串数组(我是初学者)。目的是使用 JLabel 在 JFrame 上显示数字 1 到 5;每一秒都在变化。

当 JFrame 在屏幕上弹出时,它奇怪地显示位于数组位置一的数字“二”。这与我的预期相反,我不明白为什么。

i初始化为1;它存储在“temp”中;然后将其添加到 JLabel 以及 JFrame 中。使用这种方法是否有延迟?即当 JLabel 更新时; for循环已经高级了?或者,我知道 Java.swing 有线程问题...?

非常感谢您的帮助。

J

package testApplication;

import javax.swing.JFrame;
import javax.swing.JLabel;

public class Count {

public static void main (String args[]){

String[] numbers = {"one","two","three","four","five"};
JLabel numToDisplay = new JLabel("");
String temp;

//Initiate JFrame
JFrame frame = new JFrame("Counting Application");
frame.setSize(275,100);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);

for (int i=0; i < numbers.length; i++){
temp = numbers[i];
numToDisplay.setText(temp);
frame.add(numToDisplay);
try {
Thread.sleep(1000);
} catch (Exception e) {
e.printStackTrace();
}
}

}
}

最佳答案

不要使用 Thread.sleep,而是使用 Swing Timer,以免使 GUI 进入休眠状态。

例如,

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingConstants;
import javax.swing.Timer;

public class Count {
private static int index = 0;

public static void main(String args[]) {

final String[] numbers = { "one", "two", "three", "four", "five" };
final JLabel numToDisplay = new JLabel("", SwingConstants.CENTER);
String temp;

// Initiate JFrame
JFrame frame = new JFrame("Counting Application");
frame.setSize(275, 100);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(numToDisplay);
numToDisplay.setText(numbers[index]);
frame.setVisible(true);
int delay = 1000;
new Timer(delay, new ActionListener() {

@Override
public void actionPerformed(ActionEvent e) {
index++;
if (index >= numbers.length) {
((Timer) e.getSource()).stop();
} else {
numToDisplay.setText(numbers[index]);
}
}
}).start();

}
}
<小时/>

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;

@SuppressWarnings("serial")
public class Count2 extends JPanel {
private static final String[] NUMBERS = { "one", "two", "three", "four", "five" };
private static final int PREF_W = 300;
private static final int PREF_H = 100;
private static final int TIMER_DELAY = 1000;
private JLabel numToDisplay = new JLabel("", SwingConstants.CENTER);
private int index = 0;

public Count2() {
numToDisplay.setFont(numToDisplay.getFont().deriveFont(Font.BOLD, 60f));
setLayout(new BorderLayout());
numToDisplay.setText(NUMBERS[index]);
add(numToDisplay);
new Timer(TIMER_DELAY, new TimerListener()).start();
}

@Override
public Dimension getPreferredSize() {
Dimension superSize = super.getPreferredSize();
if (isPreferredSizeSet()) {
return superSize;
}
int w = Math.max(PREF_W, superSize.width);
int h = Math.max(PREF_H, superSize.height);
return new Dimension(w, h);
}

private class TimerListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
index++;
if (index >= NUMBERS.length) {
((Timer) e.getSource()).stop();
} else {
numToDisplay.setText(NUMBERS[index]);
}
}
}

private static void createAndShowGui() {
Count2 mainPanel = new Count2();

JFrame frame = new JFrame("Count2");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}

关于java - J框架;首先显示 for 循环中的数组元素 [1],而不是 [0],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28257381/

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