- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我尝试使用 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/
我刚刚遇到了一个非常奇怪的行为。这是代码: // So far everything's fine val x: Try[Try[Unit]] = Try(Try{}) x: scala.util.T
“输出”是一个序列化的 OpenStruct。 定义标题 try(:output).try(:data).try(:title) 结束 什么会更好? :) 最佳答案 或者只是这样: def title
我有以下元组 - (t1,t2) :(Try,Try) 我想检查两者是否成功或其中之一是否失败,但避免代码重复。像这样的东西: (t1,t2) match { case (Success(v1),Su
是否必须放置内部 try-with-resources 或其中一个 try-with-resources 中的所有内容都会自动关闭? try (BasicDataSource ds = Bas
有一点特殊,尝试创建一段 try catch 代码来处理 GoogleTokenResponse,但编译器在 try 时抛出异常错误。有什么想法吗? 错误信息: | Loading Grails 2.
它几乎可以在所有语言中找到,而且我大部分时间都在使用它。 我不知道它是内部的,不知道它是如何真正起作用的。 它如何在任何语言的运行时在 native 级别工作? 例如:如果在 try 内部发生 sta
为什么在 readFile2() 中我需要捕获 FileNotFoundException 以及稍后由 close( ) 方法,并且在 try-with-resources(inside readfi
我正在使用 Apache POI 尝试读取 Word 文件,但即使您使用过 Apache POI,这仍然应该是可以回答的。在 HWPF.extractor 包中有两个对象:WordExtractor
如果try-catch的catch block 中抛出异常,那么finally block 会被调用吗? try { //some thing which throws error } cat
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
我正在使用 Try::Tiny尝试捕捉。 代码如下: use Try::Tiny; try { print "In try"; wrongsubroutine(); # undefi
我想知道这样的代码是否会在抛出异常后总是中断而不继续运行,因此代码不会继续执行第二个 temp.dodaj(b)。 Avto *a = new Avto("lambo",4); Avt
我知道在try子句中必须有一个与资源关联的变量声明。 但是除了被分配一个通常的资源实例化之外,它是否可以被分配一个已经存在的资源,例如: public String getAsString(HttpS
我有一个写的方法。此方法仅扫描用户输入的整数输入。如果用户输入一个字符值,它将抛出一个输入不匹配异常,这是在我的 Try-Catch 语句中处理的。问题是,如果用户输入任何不是数字的东西,然后抛出异常
我注意到这不会编译: PrintWriter printWriter = new PrintWriter("test.txt"); printWriter.append('a'); printWrit
我经常看到人们写这样的代码: try: some_function() except: print 'something' 当我认为这样做更干净时: try: some_functio
该应用程序将在第二个显示器上正常显示内容。问题是当我旋转 iPad 时内容不会在 iPad 上旋转。 看过: http://developer.apple.com/library/ios/#qa/qa
我正在学习 java,我发现我不喜欢的一件事通常是当我有这样的代码时: import java.util.*; import java.io.*; public class GraphProblem
我使用 C++ 有一段时间了,对普通的 try/catch 很熟悉。但是,我现在发现自己在 Windows 上,在 VisualStudio 中编码以进行 COM 开发。代码的几个部分使用了如下内容:
我是一名优秀的程序员,十分优秀!