Processing, shorten()
用法介绍。
用法
shorten(list)
参数
list
(boolean[], byte[], char[], int[], float[], String[], Object)
要缩短的数组
返回
boolean[], byte[], char[], int[], float[], String[], or Object
说明
将数组减少一个元素并返回缩短的数组。
使用对象数组时,函数返回的数据必须转换为对象数组的数据类型。例如:SomeClass[]
items = (SomeClass[]) shorten(originalArray)
.
例子
String[] sa1 = { "OH ", "NY ", "CA "};
String[] sa2 = shorten(sa1);
println(sa1); // 'sa1' still contains OH, NY, CA
println(sa2); // 'sa2' now contains OH, NY
相关用法
- Processing shape()用法及代码示例
- Processing shearY()用法及代码示例
- Processing shininess()用法及代码示例
- Processing shader()用法及代码示例
- Processing shapeMode()用法及代码示例
- Processing shearX()用法及代码示例
- Processing scale()用法及代码示例
- Processing splice()用法及代码示例
- Processing super用法及代码示例
- Processing subset()用法及代码示例
- Processing saveJSONArray()用法及代码示例
- Processing strokeJoin()用法及代码示例
- Processing saveXML()用法及代码示例
- Processing switch用法及代码示例
- Processing sqrt()用法及代码示例
- Processing serverEvent()用法及代码示例
- Processing save()用法及代码示例
- Processing saveStrings()用法及代码示例
- Processing saveTable()用法及代码示例
- Processing saturation()用法及代码示例
- Processing settings()用法及代码示例
- Processing spotLight()用法及代码示例
- Processing setLocation()用法及代码示例
- Processing splitTokens()用法及代码示例
- Processing setResizable()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 shorten()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。