Processing, subset()
用法介绍。
用法
subset(list, start)
subset(list, start, count)
参数
list
(boolean[], Object, byte[], char[], int[], long[], float[], double[], String[])
要从中提取的数组start
(int)
开始的位置count
(int)
要提取的值的数量
返回
boolean[], byte[], char[], int[], long[], float[], double[], String[], or Object
说明
从现有数组中提取元素数组。 list
参数定义要从中复制元素的数组,start
和 count
参数指定要提取的元素。如果没有给出count
,则将从start
中提取元素到数组的末尾。指定 start
时,请记住第一个数组元素为 0。此函数不会更改源数组。
使用对象数组时,函数返回的数据必须转换为对象数组的数据类型。例如:SomeClass[] items =
(SomeClass[]) subset(originalArray, 0, 4)
例子
String[] sa1 = { "OH", "NY", "CA", "VA", "CO", "IL" };
String[] sa2 = subset(sa1, 1);
println(sa2);
// Prints the following array contents to the console:
// [0] "NY"
// [1] "CA"
// [2] "VA"
// [3] "CO"
// [4] "IL"
println();
String[] sa3 = subset(sa1, 2, 3);
println(sa3);
// Prints the following array contents to the console:
// [0] "CA"
// [1] "VA"
// [2] "CO"
有关的
相关用法
- Processing super用法及代码示例
- Processing scale()用法及代码示例
- Processing splice()用法及代码示例
- Processing saveJSONArray()用法及代码示例
- Processing strokeJoin()用法及代码示例
- Processing saveXML()用法及代码示例
- Processing switch用法及代码示例
- Processing sqrt()用法及代码示例
- Processing serverEvent()用法及代码示例
- Processing save()用法及代码示例
- Processing saveStrings()用法及代码示例
- Processing saveTable()用法及代码示例
- Processing shorten()用法及代码示例
- Processing saturation()用法及代码示例
- Processing settings()用法及代码示例
- Processing spotLight()用法及代码示例
- Processing setLocation()用法及代码示例
- Processing splitTokens()用法及代码示例
- Processing setResizable()用法及代码示例
- Processing specular()用法及代码示例
- Processing sphere()用法及代码示例
- Processing setup()用法及代码示例
- Processing shape()用法及代码示例
- Processing smooth()用法及代码示例
- Processing sin()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 subset()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。