gpt4 book ai didi

java - 出现错误,例如使用未经检查或不安全的操作

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

使用未经检查或不安全的操作会出现错误。在我更新了一些 android studio firebase 库之后。

logcat 中出现错误是...使用未经检查或不安全的操作。使用 -Xlint 重新编译:未选中详细信息。

public class UserId
{
public String userId;
public<T extends UserId> T withDocId(@Nullable final String id)
{
this.userId=id;
return (T) this;
}

}

最佳答案

转换为类型参数是不安全的类型转换。事实上,在这种情况下,运行时发生的类型检查是

return (UserId) this;

但是等等。 this 的类型是 UserId ...并且类型参数没有实现任何目标。该类可以简化为:

public class UserId {
public String userId;
public UserId withDocId(@Nullable final String id) {
this.userId = id;
return this;
}
}

关于java - 出现错误,例如使用未经检查或不安全的操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57594904/

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