时髦的字节数组

2022-09-01 07:23:58

在java中,我可以创建字节数组:但是这个结构在groovy中是无效的。如何在时髦中创建字节数组?byte[] array = new byte[] { 0, 0, 0, 0, 0 };


答案 1

以下几点就足够了:

def array = [0, 0, 0, 0, 0] as byte[]

在此处查看有关 groovy 中数组的更多详细信息。


答案 2

除了rich.okelly的答案

byte[] array = [0, 0, 0, 0, 0]

也有效


推荐