gpt4 book ai didi

java - 如何在 JLabel 中显示变量值

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:34:16 26 4
gpt4 key购买 nike

我是 Java 编程的新手。我想在输出窗口中而不是在控制台 View 中显示变量的值。代码来了:

import java.awt.BorderLayout;

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

public class ShowAFrame {

public static void main(String[] args) {

// Variables in this code
int one = 12;
int two = 22;
int total = one + two;
System.out.println(total);

JFrame myFrame = new JFrame("Test GUI");
myFrame.setVisible(true);
myFrame.setBounds(300, 200, 700, 400);
JLabel myText = new JLabel("I'm a label in the window",
SwingConstants.CENTER);
myFrame.getContentPane().add(myText, BorderLayout.CENTER);

}

}

最佳答案

这样做:

label.setText(String.valueOf(variable));

变量可以是 int、float、double、long。

关于java - 如何在 JLabel 中显示变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15532401/

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