- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关于代码的一些背景知识。我是一名学生,目前正在放暑假,我想发挥我的编程技能。我编写了一个简单的 GUI 程序来计算举重运动员的营养需求。该计划完全发挥作用。
然后,我扩展了代码以创建选项卡式 Pane 。该程序的第三个选项卡是我原来的营养计划的代码。现在代码不起作用了。具体来说,ActionListener 的嵌套类和我编写的用于计算营养值的方法无法解析构造函数中的 JTextField 代码条目。我可以删除 ActionListener 和 actionTakenMethod,其余代码可以工作(虽然不太漂亮,但可以工作)。
非常感谢您能就这个问题获得任何帮助。我会记住两件事。首先,我在原始程序中使用的代码可以正常工作,因此直到我将代码添加到选项卡式 Pane 后才出现此问题。其次,我还是一名本科生,所以我的代码可能不是最漂亮的!谢谢!
此外,我的程序尚未完成,因此前两个选项卡中没有任何内容。
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class GatesFiveByFive extends JFrame{
public GatesFiveByFive(){
//Title of window
setTitle("Gates 5x5");
//Size of window
setSize(500,500);
//Set Default Close Operation
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Set Panel Visible
setVisible(true);
//JTabbedPane object declaration
JTabbedPane jtp=new JTabbedPane();
//creates the content pane
getContentPane().add(jtp);
//First Tab
JPanel tab1=new JPanel();
//Second Tab
JPanel tab2=new JPanel();
//Third Tab
JPanel tab3=new JPanel();
//Add Tab 1 to Content Pane
jtp.addTab(" 5x5 ",tab1);
//Add Tab 2 to Content Pane
jtp.addTab(" HST ",tab2);
//Add Tab 3 to Content Pane
jtp.addTab(" Nutrition ",tab3);
/**Adds content to the First Tab pane*/
/**Adds content to the Second Tab pane*/
/**Adds content to Third Tab pane*/
JButton calculate;//display calculate button
JLabel weight;
JLabel weight1;
JLabel totalCalories;
JLabel protein;
JLabel fats;
JLabel carbs;
JTextField weightField;
JTextField totalCaloriesField;
JTextField proteinField;
JTextField fatsField;
JTextField carbsField;
//Create five labels
weight=new JLabel("Enter your weight:");
weight1=new JLabel("");
totalCalories=new JLabel("Total Calories");
protein=new JLabel("Protein");
fats=new JLabel("Fats");
carbs=new JLabel("Carbs");
//Create five text fields
weightField=new JTextField(20);
totalCaloriesField=new JTextField(20);
proteinField=new JTextField(20);
fatsField=new JTextField(20);
carbsField=new JTextField(20);
//Create "calculate" button
calculate=new JButton("Calculate");
//Register "calculate" button
calculate.addActionListener(new CalculateButtonListener());
//Populate Tab 3
tab3.setLayout(new GridLayout(6,2));
tab3.add(weight);
tab3.add(weight1);
tab3.add(weightField);
tab3.add(calculate);
tab3.add(totalCalories);
tab3.add(totalCaloriesField);
tab3.add(protein);
tab3.add(proteinField);
tab3.add(fats);
tab3.add(fatsField);
tab3.add(carbs);
tab3.add(carbsField);
}//end constructor GatesFiveByFive
/**Private inner class for event handler CalculateButtonListener*/
private class CalculateButtonListener implements ActionListener{
public void actionPerformed(ActionEvent e){
actionTakenMethod(weightField.getText());
}//end actionPerformed method
}//end CalculateButtonListener inner class
/**method for calculating tab 3 stats*/
public void actionTakenMethod(String currentWeight){
/**Convert String input to double for processing*/
double x=Double.parseDouble(currentWeight);
/**Calculations for finding macronutrient stats*/
double cal=14.183*x+500; //total calories
double pro=0.886*x; //protein
double fat=0.39397*x; //fats
double carb=1.7733175*x; //carbs
/**Convert results of calculations back to string for display*/
String calCal=Double.toString(cal);
String proPro=Double.toString(pro);
String fatFat=Double.toString(fat);
String carbCarb=Double.toString(carb);
/**Display results of calculation*/
totalCaloriesField.setText(calCal);
proteinField.setText(proPro);
fatsField.setText(fatFat);
carbsField.setText(carbCarb);
}//end actionTakenMethod
public static void main(String[]args){
GatesFiveByFive gates=new GatesFiveByFive();
}//end main
}// end GatesFiveByFive.java
最佳答案
这些变量是构造函数的局部变量。在构造函数外部声明您的 JLabel
和 JTextField
。也就是说,将它们设为 GatesFiveByFive
类的私有(private)实例字段。您的 ActionListener
是一个内部类,因此它仍然可以访问外部类的那些字段。
关于java - ActionListener 和方法不能 "see"JTextFields,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17405925/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!