假设我有类似的东西:
public interface ITest {
long[] getDataArray();
void setDataArray(long[] data);
}
在这种情况下,因为 long[] 看起来我不能使用
Values.newHeapInstance(ITest.class);
(我得到field type class [Lnet.openhft.chronicle.core.values.LongValue; is not supported: not a primitive, enum, CharSequence or another value interface
例外)
听起来很奇怪我错过了什么?处理此类对象的最佳方法是什么?实现自己的序列化?