作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用泛型来定义给定方法抛出的业务异常(scala 方法将从 Java 调用,因此它必须在签名中)。
这是我在 Java 中的做法:
public interface BaseInterface<T, E extends Throwable> {
public T process(Class<E> wrapperExc) throws E;
}
public class ExcOne extends Exception {}
public class SubclassOne implements BaseInterface<String, ExcOne> {
@Override
public String process(Class<ExcOne> wrapperExc) throws ExcOne {
return null;
}
}
class UsingGenerics[IN, OUT, E <: Throwable] {
//@throws(classOf[E]) - error: class type required but E found
def process(request: IN, wrapperExc: Class[E]): OUT = {
null.asInstanceOf[OUT]
}
}
trait BaseTrait {
type Request
type Response
type BusinessException <: Throwable
//error: class type required but BaseTrait.this.BusinessException found
//@throws(classOf[BusinessException])
def process(request: Request): Response
}
class TraitImplementor extends BaseTrait {
type Request = Input
type Response = Output
type BusinessException = BizExc
def process(r: Request): Response = {
if (1 != 2) throw new BusinessException("Bang")
new Response
}
}
class Input
class Output
class BizExc(msg: String) extends Exception(msg)
最佳答案
实际上,在java中注释也是一样的。
如果创建注释
public @interface Throwing { Class<? extends Throwable> exceptionType(); }
throwing{exceptionType = RuntimeException.class}
但不是
throwing{exceptionType = E.class}
.你不能做
E.class
在 java 中也不是
classOf[E]
在斯卡拉。
@throws
中是注解,遵循注解规则,但JVM上的throws规则不同。也许需要特殊情况。
关于generics - 使用泛型的Scala异常签名定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7848576/
我是一名优秀的程序员,十分优秀!