gpt4 book ai didi

java - Java 中的循环问题

转载 作者:行者123 更新时间:2023-12-01 14:15:58 24 4
gpt4 key购买 nike

我正在制作一个简单的货币转换器 GUI(没什么花哨的),因为我将尝试在用户每次打开应用程序时合并实时汇率更新。创建布局时,我决定简单地转换 3 种货币(英镑、美元和欧元)。我有 2 列各自的标志,每列都有 3 个标志之一。一栏供用户选择初始货币,另一栏是想要兑换的货币;如下所示Basic layout with the flags in columns, 'From' and 'To'

我创建了一个字符串数组,其中包含单词“英镑”、“美元”和“欧元”,我想将这些标签放在标志的左侧(为了让用户清楚地了解应用程序,因为并非每个标签都可以)用户可能知道哪种货币属于哪个国家。

我创建了一个循环,它会创建一个标签并将其分配到标志的左侧,它应该创建一个“英镑”标签,然后是“美元”,然后是“欧元”,每次穿过 Y 轴南以便它们与标志对齐,然后重置数组计数以返回到正确的字符串,沿 x 轴移动并再次重复。然而它根本没有这样做,我得到的唯一结果是第一个英国国旗左侧的文本“Pounds”;如下所示:

As you can see, i simply get one label

下面是我的代码,如果有人能明白为什么会发生这种情况。

这是将标志添加到面板的代码

    addToMain(GBP1, mainPage, 100,100,100,100); //alligns a United Kingdom Flag to left Column
addToMain(GBP2, mainPage, 375,100,100,100); //alligns a United Kingdom Flag to right Column
addToMain(USD1, mainPage, 100,200,100,100); //alligns a United States Flag to left Column
addToMain(USD2, mainPage, 375,200,100,100); //alligns a United States Flag to right Column
addToMain(EUR1, mainPage, 100,300,100,100); //alligns a European Union Flag to left Column
addToMain(EUR2, mainPage, 375,300,100,100); //alligns a European Union Flag to right Column

这是应将文本标签添加到标志左侧的循环

    currencyName = new String [] {"Pounds", "Dollars", "Euros"};

for(int i = 0; i <= 7; i++)
{
int count = 0; //declares a counter for the position in the currencyName array to grab the correct text for label
xLabelAlign = 50;
yLabelAlign = 100;

if(count == 3)
{
count = 0; //resets to create both columns of labels in the application moves to the next column.
xLabelAlign = 325;
yLabelAlign = 100;
}

JLabel temp = new JLabel(currencyName[count]); //creates a new label and names it the string at position count
temp.setFont(new Font("SERIF", Font.BOLD, 20));
temp.setForeground(Color.WHITE);
addToMain(temp, mainPage, xLabelAlign, yLabelAlign ,100,100); //adds it to the panel

yLabelAlign +=100; //moves position ready for the next text label.
count++; //grabs the next label in the currencyName string array.

}

这是向面板添加内容的方法。我已经使用设置边界方法将内容添加到面板中,以便我可以轻松地将它们放置在我想要的位置

  private void addToMain(JComponent c, JPanel p, int x, int y, int w, int h)
{
c.setBounds(x,y,w,h);
p.add(c);
}

任何帮助将不胜感激。

最佳答案

快速解决方案:移动你的int count = 0; xLabelAlign = 50; yLabelAlign = 100; 脱离 for 循环。在[0,5]范围内循环。

好的解决方案:Java layouts tutorial

关于java - Java 中的循环问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18104324/

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