如果我有一个listvector,我如何确定它是什么类型的列表?例如,如果我知道这个listvector包含int的列表:
RootAllocator allocator = new RootAllocator(Long.MAX_VALUE);
ListVector vector = new ListVector("list vector", allocator);
int[] nums = new int[]{1, 2, 3};
addIntsToVector(vector, nums);
如何在arrow中确定内部数据是int类型的?
暂无答案!
目前还没有任何答案,快来回答吧!