由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 看到一个让我~!@#$%^&*的code
相关主题
有没有人熟悉tomcat?急!这道题该走什么路
eclipse的jetty服务started但8080口显示404 errorHow does a client find and connect to a specific
Spring + Jersey 的 REST API, servlet context 能看到 Spring (转载)Talk a little more about How to lock a file
Apply lock on a class.Re: Entity EJB: anyone with real experience
问一个关于access object instance的问题Starter's problem
return null or empty list/set/...Runtime.exec() 问题
对 spring 的 exception 处理方式真是不适应anyone use org.gxos package?
问一个 java generic问题help on this scope question
相关话题的讨论汇总
话题: exception话题: instance话题: else话题: code
进入Java版参与讨论
1 (共1页)
b******y
发帖数: 1684
1
methodA {
...
...
try {
...
} catch (Exception e) {
handleError(e, context);
}
}
handleError(Exception e, ...) {
if (e instanceof ExceptionA) {
...
} else if (e instance of ExceptionB) {
...
...
} else if (e instance of ExceptionZZZ) {
...
}
}
彻底无话可说。。。
l**b
发帖数: 457
2
这也没什么吧...只要work,管他呢.
a****l
发帖数: 8211
3
what's the problem? which part don't you like?

【在 b******y 的大作中提到】
: methodA {
: ...
: ...
: try {
: ...
: } catch (Exception e) {
: handleError(e, context);
: }
: }
: handleError(Exception e, ...) {

1 (共1页)
进入Java版参与讨论
相关主题
help on this scope question问一个关于access object instance的问题
A question about inheritancereturn null or empty list/set/...
怎么能够减少image上的锯齿?对 spring 的 exception 处理方式真是不适应
在一个函数里把arraylist设为null 但是有问题问一个 java generic问题
有没有人熟悉tomcat?急!这道题该走什么路
eclipse的jetty服务started但8080口显示404 errorHow does a client find and connect to a specific
Spring + Jersey 的 REST API, servlet context 能看到 Spring (转载)Talk a little more about How to lock a file
Apply lock on a class.Re: Entity EJB: anyone with real experience
相关话题的讨论汇总
话题: exception话题: instance话题: else话题: code