gpt4 book ai didi

java - 如何将 OUT String 参数传递给函数?

转载 作者:行者123 更新时间:2023-12-01 19:48:09 25 4
gpt4 key购买 nike

如何将 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/

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