在 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中文網其他相關文章!