gpt4 book ai didi

java - 在 Java 中得到 SecurityException

转载 作者:行者123 更新时间:2023-11-30 07:02:10 25 4
gpt4 key购买 nike

为什么会出现这个错误

Exception in thread "main" java.lang.SecurityException: Unsafe

当我运行我的代码时

public class UnsafeString {
public static void main(String[] args) throws InstantiationException {
String obj = new UnsafeString().create();
System.out.println(obj);
}
public String create() throws InstantiationException {
return (String) sun.misc.Unsafe.getUnsafe().allocateInstance(String.class);
}
}

最佳答案

你不能直接使用Unsafe。它涉及一些技巧来避免 SecurityException(主要是通过反射获取 Unsafe 实例)。假设你没有做一些愚蠢的事情,比如在生产代码中使用它,here's一种检索它的方法。

还有传言说它将在以后成为公共(public) API 的一部分。

关于java - 在 Java 中得到 SecurityException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29301755/

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