作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将 OUT 字符串参数传递给函数?类似的东西
public static Address getFromLocation (OUT string ErrorMsg) { ... }
如果在 getFromLocation 中发现一些错误,则该函数将更新我稍后可以使用的 ErrorMsg。
如果不可能,在我的示例中,我如何检索 errorMsg ?
最佳答案
Java 中没有 out
参数这样的东西,因此您必须通过添加额外的间接级别来模仿通过值传递来传递输出参数。
一个非常简单的方法是传递 StringBuilder
- 可以由调用者修改的可变对象:
public static Result getFromLocation(StringBuilder additionalInformation) {
...
// Method modifies the mutable object
additionalInformation.append("Some additional text");
...
}
调用者必须提供一个非空的StringBuilder
,如下所示:
StringBuilder info = new StringBuilder();
Result res = getFromLocation(info);
// Caller sees information inserted by the method
System.out.println(info);
在收到错误消息的情况下,更好的方法是抛出已检查的异常。这样您就能够提供越界错误消息,并将错误处理与系统主要功能的代码完全分开:
class AddressRetrievalExcepion extends Exception {
...
}
public static Address getFromLocation() throws AddressRetrievalExcepion {
...
if (errorCondition) {
throw new AddressRetrievalExcepion("Cannot get address");
}
...
}
try {
Address addr = getFromLocation(error);
} catch (AddressRetrievalExcepion ae) {
System.out.println(ae.getMessage());
}
关于java - 如何将 OUT String 参数传递给函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52425859/
我是一名优秀的程序员,十分优秀!