vector-handle:表示Java中向量化操作的高级API

时间:2024-06-10 00:33:53
【文件属性】:

文件名称:vector-handle:表示Java中向量化操作的高级API

文件大小:39KB

文件格式:ZIP

更新时间:2024-06-10 00:33:53

Java

向量句柄 一种高级API,用于在Java中对基本数组表达矢量化操作,从而可以将矢量化操作指定为简单的lambda。 例子 private static final VH = VectorHandle . of(lookup(), int . class, int . class, int . class); ... var dest = new int [ 4 ]; var a = new int [] { 1 , 2 , 3 , 4 }; var b = new int [] { 4 , 4 , 4 , 4 }; VH . apply(dest, a, b, (x, y) - > x + y * 2 ); System . out . println( Arrays . toString(dest)); // [9, 10, 11, 12] 可用的操作 方法apply()的变体使用的l


【文件预览】:
vector-handle-main
----pom.xml(4KB)
----.github()
--------workflows()
----LICENSE(34KB)
----src()
--------test()
--------main()
----.idea()
--------vector-handle.iml(2KB)
--------uiDesigner.xml(9KB)
--------misc.xml(451B)
--------jarRepositories.xml(845B)
--------vcs.xml(167B)
--------.name(7B)
--------modules.xml(278B)
--------google-java-format.xml(175B)
--------encodings.xml(186B)
--------compiler.xml(832B)
--------.gitignore(47B)
--------libraries()
--------inspectionProfiles()
----.gitignore(278B)
----README.md(2KB)

网友评论