- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前对如何使用数组来完成作业感到困惑。我浏览了论坛并使用了谷歌,但运气不佳。我真的很感激有人可以提供的任何建议。非常感谢!:
为我的 2 组单选按钮以及字体大小和字体创建数组
删除所有对单个 JRadioButton 的引用(style1、style2、....size1、size2 等)。相反,必须使用数组值。完成所有代码的修改后,我只需要在一个地方更改程序即可更改大小的所有方面。例如,更改字体数组中的值应该更改字体大小选项和显示该字体大小的标签。
JRadioButton 数组的大小应该与 int 和 String 数组的长度直接相关。因此,如果我有六种不同的尺寸可供选择,那么您的数组中应该有六个 JRadioButton。
通过向您的样式数组添加两个额外的字体样式来测试您的代码。
通过向您的大小数组添加两个额外的大小来测试您的代码。
您可能必须修改您的 actionPerformed 方法以匹配第 5 章中检查特定事件的 JRadioButtons 示例中的方法。
因此,在我尚未初始化的两个数组中,我将它们的大小设置为 7,以便我可以添加另外两种大小和两种字体。我对如何在 actionListener 中调用数组的索引感到困惑。什么是使用单选按钮和数组的好教程?
这是我当前的代码:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class StyleArrays extends JPanel implements ActionListener
{
//declare the labels, panels, variables and radio buttons
private JLabel saying;
private JRadioButton style1, style2, style3, style4;
private JRadioButton size1, size2, size3, size4;
private JPanel top, right, left;
JRadioButton[] size = new JRadioButton[7];
JRadioButton[] font = new JRadioButton[7];
String[] fonts = {"Arial", "Thonburi", "Rockwell", "Century Gothic"};
int[] sizes = {18, 22, 26, 30};
//declare the variables used later in the code the set the font and style
//private String myFont = "Arial";
//private int size = 18;
//Constructor
//-----------------------------------------------------------------
public StyleArrays()
{
//set the layout of the Layouts panel that will contain all of the other panels
setLayout (new BorderLayout());
setBackground (Color.red);
//create the new panels that will go inside the Layouts panel
top= new JPanel();
right= new JPanel();
left= new JPanel();
saying = new JLabel ("Say it with style!");
// saying.setFont (new Font (myFont, Font.PLAIN, size));
//set the layout and color of the top panel, and add the saying
add(top, BorderLayout.NORTH);
top.setBackground (Color.yellow);
top.add(saying);
//create size radio buttons
size1 = new JRadioButton ("18", true);
size1.setBackground (Color.red);
size2 = new JRadioButton ("22");
size2.setBackground (Color.red);
size3 = new JRadioButton ("26");
size3.setBackground (Color.red);
size4 = new JRadioButton ("30");
size4.setBackground (Color.red);
//add listeners for each size buttons
size1.addActionListener (this);
size2.addActionListener (this);
size3.addActionListener (this);
size4.addActionListener (this);
//add these buttons to this button group
ButtonGroup group1 = new ButtonGroup();
group1.add (size1);
group1.add (size2);
group1.add (size3);
group1.add (size4);
//set the layout and color of the left panel
add(left, BorderLayout.WEST); //add the left panel to the border layout
left.setLayout (new BoxLayout (left, BoxLayout.Y_AXIS)); //set the layout of left to box layout
left.setBackground (Color.red); //set the color to red
//display the buttons on the panel
left.add (size1);
left.add (size2);
left.add (size3);
left.add (size4);
//This section deals with the panel that contains the STYLE information
add(right, BorderLayout.EAST); //add the right panel to the border layout
right.setLayout (new GridLayout (2, 2)); //set the layout of right panel to grid layout
right.setBackground (Color.red); // set the background color of the panel to red
//create style radio buttons
style1 = new JRadioButton ("Arial", true);
style1.setBackground (Color.red);
style2 = new JRadioButton ("Thonburi");
style2.setBackground (Color.red);
style3 = new JRadioButton ("Rockwell");
style3.setBackground (Color.red);
style4 = new JRadioButton ("Century Gothic");
style4.setBackground (Color.red);
//add listeners for each style button
style1.addActionListener (this);
style2.addActionListener (this);
style3.addActionListener (this);
style4.addActionListener (this);
//add these buttons to this button group
ButtonGroup group2 = new ButtonGroup();
group2.add (style1);
group2.add (style2);
group2.add (style3);
group2.add (style4);
//display the buttons on the panel
right.add (style1);
right.add (style2);
right.add (style3);
right.add (style4);
}
//*****************************************************************
// Represents the listener for both check boxes.
//*****************************************************************
//*****************************************************************
// Represents the listener for the radio buttons.
//*****************************************************************
public void actionPerformed (ActionEvent event)
{
Object source = event.getSource();
if (source == size1) //if the event is that the size1 button is selected
size = 18; //assign 18 to the variable
if (source == size2)
size = 22;
if (source == size3)
size = 26;
if (source == size4)
size = 30;
if (source == style1)
myFont = "Arial";
if (source == style2)
myFont = "Thonburi";
if (source == style3)
myFont = "Rockwell";
if (source == style4)
myFont = "Century Gothic";
saying.setFont (new Font (myFont, Font.PLAIN, size)); //display the saying with the current value of 'myFont' and 'style'
}
public static void main (String[] args)
{
JFrame frame = new JFrame ("Style Arrays");
frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
StyleArrays panel = new StyleArrays();
frame.getContentPane().add (panel);
frame.pack();
frame.setVisible(true);
}
}
最佳答案
对于初学者来说,任何你能用一个对象做的事情,你都可以用那个对象类型的数组值来做。所以如果你有一个 JRadio 按钮数组,并且 RadioButton.addActionListener(this) 是一个合法的调用,Array[0].addActionListener(this) 是一个合法的调用,就像(这是伪代码,不是 Java)
for each index i of Array
Array[i].addActionListener(this)
鉴于此,您似乎可以使用大小/字体类型等值数组并遍历它们来创建您的按钮。如果数组中有 10 个尺寸,您可以这样做
for each index i of Sizes
Array[i] = new JRadioButton(i)
或者类似的东西。我认为迭代值以创建/修改对象是这里正在寻找的。
关于java - 创建带有使用数组更改文本的单选按钮的面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4137563/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!