在 Java 编程中,经常会遇到需要序列化 lambda 表达式的场景。但是,尝试直接序列化 lambda 通常会导致 NotSerializedException。
请考虑以下示例:
public static void main(String[] args) throws Exception { File file = Files.createTempFile("lambda", "ser").toFile(); try (ObjectOutput oo = new ObjectOutputStream(new FileOutputStream(file))) { Runnable r = () -> System.out.println("Can I be serialized?"); oo.writeObject(r); } try (ObjectInput oi = new ObjectInputStream(new FileInputStream(file))) { Runnable r = (Runnable) oi.readObject(); r.run(); } }
在这种情况下,序列化 lambda 会引发 NotSerializedException。
Runnable r = (Runnable & Serializable)() -> System.out.println("Serializable!");
以上是如何在不创建虚拟接口的情况下序列化 Java 中的 Lambda 表达式?的详细内容。更多信息请关注PHP中文网其他相关文章!