gpt4 book ai didi

java - 如何在 UDAF 中使用第三方不可序列化对象?

转载 作者:行者123 更新时间:2023-11-30 06:04:53 24 4
gpt4 key购买 nike

我有一个具有第三方不可序列化属性的类,我需要将其发送到使用该类的一种方法的 UDAF。

由于不可序列化属性,我无法添加“实现可序列化”,并且我无法创建子类包装器,因为该属性在其构造函数中需要一个参数...

有什么想法吗?

public class ClassWithNoSerializableProperty implements Serializable {

private NoSerializable property;

public ClassWithNoSerializableProperty (String text) {
property = new NoSerializable(text);
}

}
public class NoSerializable {

protected String text;

public NoSerializable(String text) {
this.text = text;
}

}

最佳答案

使用此类来包装NoSerialized的构造函数

SerializedWrapper<NoSerializable> property = new SerializedWrapper(() -> new NoSerializable(text));
// call this to use it.
property.get();

/**
* Makes an unserializable class serializable through lazy initialization.
*/
public class SerializedWrapper<T> implements Serializable {

private SerializedConstructor<T> constructor;
private transient T instance;

/**
* Creates a serializable wrapper for something.
*/
public SerializedWrapper(SerializedConstructor<T> constructor) {
this.constructor = constructor;
}

/**
* Gets or creates an instance of T.
*/
public T get() {
if (instance == null){
instance = constructor.get();
}
return instance;
}

}

/**
* Dummy interface so we don't have to do (Consumer<T> & Serializable)
*/
public interface SerializedConstructor<T> implements Serializable, Consumer<T> {}

关于java - 如何在 UDAF 中使用第三方不可序列化对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51543789/

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