gpt4 book ai didi

java - 不返回 java 函数注解

转载 作者:搜寻专家 更新时间:2023-10-31 20:04:07 24 4
gpt4 key购买 nike

有什么方法可以强制编译器(注释或其他方式)实现 java 函数永远不会返回(即总是抛出),以便随后它不会错误地使用它作为其他返回非 void 函数的最后一条语句?

这是一个简化/编造的例子:

int add( int x, int y ) {
throwNotImplemented(); // compiler error here: no return value.
}

// How can I annotate (or change) this function, so compiling add will not yield
// an error since this function always throws?
void throwNotImplemented() {
... some stuff here (generally logging, sometimes recovery, etc)
throw new NotImplementedException();
}

谢谢。

最佳答案

不,这不可能。

但是请注意,您可以按如下方式轻松解决此问题:

int add( int x, int y ) {
throw notImplemented();
}

Exception notImplemented() {
... some stuff here (generally logging, sometimes recovery, etc)
return new NotImplementedException();
}

关于java - 不返回 java 函数注解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14413131/

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