2015-11-18 93 views

回答

3

或者使用擴操作:

def custom = [*1..3, 2, *4..10] 
1

它可以通過壓平可變類型的ArrayList文字與單個項目和嵌套的連續範圍的任意組合來實現:

[1..3,2,4..10].flatten()