gpt4 book ai didi

java - 如何在另一个类中使用方法(在 Try-Catch 内)中的变量?

转载 作者:行者123 更新时间:2023-12-01 14:34:52 25 4
gpt4 key购买 nike

所以我尝试使用 JFrames 创建一个基本的 RPG 用户 ID 选择菜单;我选择使用单选按钮显示 ID 选项。一旦用户选择了 ID,我就会使用 JOptionPane 将其返回。所有这些都是在 MyClass 类中完成的。当用户选择 ID 时,我会从 .txt 文件中读取内容以检查用户所做的选择,因为每个用户 ID 都与一个角色相关联,该角色的统计信息也包含在 .txt 文件中。我能够分解 .txt 文件的多行并将所有不同的特征存储为单独的字符串。我的问题是,现在我想在 MyClass 之外创建另一个类,使用 JFrames 显示所述特征,但我在传递变量时遇到了麻烦,因为 .txt 文件的分解是在 Try-Catch 内完成的,并且基于我的内容已读过,这些变量仅包含在 Try-Catch 的范围内。这就是我提到的第一个类中的方法的样子:

public void checkID()
{

StringBuilder allInfo=null; //Used to store all the Info
String line=null; //Used as condition for loop & to generate the String Builder
String strAll2=null;
String[] sa=null;
String[] sb=null;
String[] sd=null;
String[] se=null;
BufferedReader br=null;
//User Id as a string

try {



br = new BufferedReader(new FileReader("charList.txt"));
allInfo= new StringBuilder();

while ((line=br.readLine()) != null)
{
allInfo.append(line + "\n");
}

strAll2=allInfo.toString(); //all the info of charList.txt as one StringBuilder
sa=strAll2.split("\n"); //all the info of charList.txt as a String
sb=sa[0].split("\t"); //all the info of the first line of the file as individual strings
sd=sa[1].split("\t"); //all the info of the second line of the file as individual strings
se=sa[2].split("\t"); //all the info of the third line of the file as individual strings


if (firstIdButton.isSelected())
{
strId=sb[0];
}
else
{
if (secondIdButton.isSelected())
{
strId=sd[0];
}
else
{
if (thirdIdButton.isSelected())
{
strId=se[0];
}
}
}

ID = Integer.parseInt(strId);
}//end of try
catch (IOException e) {
e.printStackTrace();

}//end of catch



setVisible(false); //Hides Window



}//end of check id method

我在主类中分别将 ID 和 strId 声明为 public int 和 String 现在,我希望按照在 MyClass 之外的另一个类中调用 ID 的方式做一些事情,并且可能通过几个运行它if-elses 查看要显示的字符。问题是,当我实例化构造函数并尝试访问变量时,它返回 0,因为 try-catch 的范围不允许我将 block 内获得的值传递给它。我还尝试让我的方法返回 ID 的值,但我在 MyClass 之外遇到了同样的问题

这就是我在实现它时遇到困难的地方

公共(public)类字符编辑器{

public static void main(String[] args) throws IOException{ 

MyClass iw= new MyClass();
int theID=iw.ID;
System.out.println(theID);

}}

最佳答案

你需要分解你的类和他们的职责。您需要模型类:代表游戏角色的类,以及进行游戏所需计算的类。类似的东西

/**
* A character from the game Toon.
* @see http://en.wikipedia.org/wiki/Toon_(role-playing_game)
*/
public class Toon implements Serializable {
private int muscle;
private int zip;
private int smarts;
private int chutzpah;
private String name;
private String species;
// Constructor, getters, setters, etc.
}

您需要一个或多个 View 类:您的自定义 JFrames 和 Swing ActionListeners。这些不应该对验证 id 或从文本文件读取数据起作用。

你的MyClass(这是你想要避免的名字,因为六个月后你会忘记你想要做什么),剥夺了它的所有JFrames并且 JButtons 成为 Controller 。它和兄弟类从文本文件中读取 Toons 并将它们放入模型类中。它从 View 中监听 ActionEvent,尝试执行用户想要的操作,然后更新模型和 View ,或者向 View 报告错误并保留模型。

关于java - 如何在另一个类中使用方法(在 Try-Catch 内)中的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16578303/

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