- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个程序,它声明了一个 Apartment 对象数组。每间公寓都有地址、号码、卧室数量和租金价格。初始化数组时,每个公寓都会被赋予一个字符串,并且 Apartment 类的构造函数将该字符串转换为值。该程序是使用多个类进行异常抛出和捕获的测试研究。
目前一切都按预期工作,公寓已创建,字符串已正确转换为对象参数,并且正确抛出并捕获异常,但是,目前,当捕获异常时,程序结束。我不确定该怎么处理这个问题。我相信我可以重组程序,以便在 Apartment 构造函数本身内部捕获异常,但如果这不起作用,那就是浪费时间,所以我决定在这里搜索,然后询问首先。
以下是程序中“主”类的代码,其下方是当前输出:
public class ThrowApartmentException
{
public static void main(String[] args)
{
// this program uses three classes, the ThrowApartmentException class is the "main" class, it's what you run to use the program. The Apartment class is used to create
// apartment objects, and it converts apartment Strings into values, checks those values for validity, and throws an exception if those values are wrong. This exception
// is an ApartmentException, which is the third class. It takes the apartment string as an argument and simply prints a message stating that the apartment failed to be
// instantiated.
// this class creates an array of 6 apartment objects, with both valid and invalid values, and an appropriate message is displayed when one is instantiated successfully
// and one is not.
Apartment[] apartments = new Apartment[6];
// apartment string parameter is formatted "address, number, rooms, rent".
try {
apartments[0] = new Apartment("123 Fake Street, 456, 3, 1500"); // valid.
apartments[1] = new Apartment("21 Blizzard Avenue, 333, 2, 2600"); // invalid rent.
apartments[2] = new Apartment("6 Brr Street, 23, 1, 1000"); // invalid number.
apartments[3] = new Apartment("25 Boat Lane, 324, 5, 1200"); // invalid rooms.
apartments[4] = new Apartment("47 Kenneth Street, 550, 1, 1000"); // valid.
apartments[5] = new Apartment("36 Sanders Drive, 230, 1, 1300"); // valid.
}
catch(ApartmentException mistake) {
}
}
}
-----------------------------------------
Output:
Apartment 123 Fake Street, 456, 3, 1500 was successfully initialised.
Apartment 21 Blizzard Avenue, 333, 2, 2600 failed to be instantiated, one or more of the values was outside of valid range.
我认为可以解决问题的当前选项是:
1:将每个对象实例化放在它自己的 try/catch block 中。
2:重构程序,使 try/catch block 在 Apartment 构造函数内执行。
3:了解格式化循环的某种方式,允许像这样的独特对象实例化,我可能可以使用字符串数组,但这似乎是一个非常尴尬的管道胶带解决方案,而不是实际的解决方案。
最佳答案
这就是我要做的:
1-如果向公寓类
传递无效输入,则让其抛出异常(在您的情况下为ApartmentException
)
2- 使用列表而不是数组,如下所示:
List<Apartment> myList = new ArrayList<Apartment>();
String[] desc = new String {"123 Fake Street, 456, 3, 1500", ... }
for(int i=0; i<desc.length; i++)
{
try
{
myList.add(new Apartment(desc[i]));
}
catch(ApartmentException mistake)
{
//do something
}
}
//at this point myList contains only valid listings
关于java - 捕获异常后继续程序,而不使用循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36394812/
我正在我的应用程序后台下载视频。如果用户在下载过程中重启了应用/设备,有什么方法可以在他们下次启动应用时从他们中断的地方继续下载? 最佳答案 这主要取决于文件服务器的配置(HTTP、FTP 等)。 现
我正在试验 WPF 动画,但有点卡住了。这是我需要做的: 鼠标悬停: 淡入(2 秒内从 0% 到 100% 不透明度) MouseOut: 暂停 2 秒 淡出(2 秒内从 100% 到 0% 不透明度
我的问题是这个线程的延续: Ant: copy the same fileset to multiple places 我是映射器的新手。有人(carej?)可以分享一个使用映射器来做到这一点的例子吗
继续previous question我希望能够显示一些事件指示器即使主线程被阻塞。(基于this article)。 基于所附代码的问题: 使用 Synchronize(PaintTargetWin
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度的了解。包括尝试的解决方案、为什么它们不起作用以及预期结果
我有一个场景,其中有一个线程在等待和执行任务之间循环。但是,我想中断线程的等待(如果愿意,可以跳过其余的等待)并继续执行任务。 有人知道如何做到这一点吗? 最佳答案 我认为你需要的是实现 wait()
这是我的代码架构: while (..) { for (...; ...;...) for(...;...;...) if ( )
import java.util.Scanner; public class InteractiveRectangle { public static void main(String[] args)
如何将 continue 放入具有函数的列表理解中? 下面的示例代码... import pandas as pd l = list(pd.Series([1,3,5,0,6,8])) def inv
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this qu
我正在用 python 开发一个程序,遇到了一个我不知道如何解决的问题。我的意图是使用 with 语句,避免使用 try/except。 到目前为止,我的想法是能够使用 continue 语句,就像在
我对下一段代码的执行感到困惑: label: for (int i = 0; i < 100; i++) { if (i % 2 == 0) c
这很好用: #include int main(){ volatile int abort_counter = 0; volatile int i = 0; while (i
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
如果不满足某些条件,我会尝试跳到循环的下一次迭代。问题是循环仍在继续。 我哪里出错了? 根据第一条评论更新了代码示例。 foreach ($this->routes as $route =>
如果不满足某些条件,我会尝试跳到循环的下一次迭代。问题是循环仍在继续。 我哪里出错了? 根据第一条评论更新了代码示例。 foreach ($this->routes as $route =>
Android项目中的一个需求:通过线程读取文件内容,并且可以控制线程的开始、暂停、继续,来控制读文件。在此记录下。 直接在主线程中,通过wait、notify、notifyAll去控制读文件的线
link text 我得到了引用计数的概念 所以当我执行“del astrd”时,引用计数降为零并且 astrd 被 gc 收集? 这是示例代码。这些代码是我在昨天的问题之后开发的:link text
我想首先检查我的 Range 是否有 #NA 错误,然后在退出宏之前显示包含错误的单元格地址。这是我到目前为止所做的。 现在,如果出现错误,我想显示 MsgBox警告用户错误并停止程序的其余部分执行,
while( (c = fgetc(stdin)) != EOF ){ count++; if (count == lineLen - 1){ moreChars =
我是一名优秀的程序员,十分优秀!