Java:是否有一些准标准的 API,它们可以执行 int[] <-> 操作? Integer[] 之类的?

发布于 2024-08-21 06:55:30 字数 431 浏览 15 评论 0 原文

我需要在 primitivetype[]boxedtype[] (两个方向)之间进行大量转换。
如:Integer[] <-> int[], Double[] <->; double[], ...

在我自己编写此类实用方法之前,我想知道是否有一些准标准 API 可以提供此类功能。

Java 有 8 原语类型,所以这将是一项相当(复制粘贴)的工作...

谢谢。

I need to do lots of conversions between primitivetype[] and boxedtype[] (both directions).
Such as: Integer[] <-> int[], Double[] <-> double[], ...

I wanted to know, if there's some quasi-standards APIs out there, which provide such functionality, before I write such utility methods by myself.

Java has 8 primitive types, so it would be quite a (copy-paste) work...

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瑾夏年华 2024-08-28 06:55:30

ArrayUtils

ArrayUtils.toObject( Primitive[] )

ArrayUtil.toPrimitive(wrapper[])

ArrayUtils

ArrayUtils.toObject( primitive[] )

and

ArrayUtil.toPrimitive( wrapper[] )

戏剧牡丹亭 2024-08-28 06:55:30

最近我写了一个 LGPL3 库,所以它不是标准的,也没有被广泛采用,它试图解决这些问题:

Integer[] boxed = ... ;
int[] primitive = $(boxed).toIntArray();

反之亦然:

boxed = $(boxed).toArray();

但我希望您会欣赏一些额外的功能,例如转换:

byte[] bytes = ...;
int[] ints = $(bytes).toIntArray();
short[] shorts = $(bytes).toShortArray();

Lately I've written a LGPL3 library, so it isn't stardard nor widely adopted, that try to addressing these problems:

Integer[] boxed = ... ;
int[] primitive = $(boxed).toIntArray();

and viceversa:

boxed = $(boxed).toArray();

But I'm hoping that you will appreciate some extra features like casting:

byte[] bytes = ...;
int[] ints = $(bytes).toIntArray();
short[] shorts = $(bytes).toShortArray();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文