Processing, concat()
用法介绍。
用法
concat(a, b)
参数
a
(boolean[], byte[], char[], int[], float[], String[], Object)
第一个要连接的数组b
(boolean[], byte[], char[], int[], float[], String[], Object)
要连接的第二个数组
返回
boolean[], byte[], char[], int[], float[], String[], or Object
说明
连接两个数组。例如,连接数组 { 1, 2, 3 } 和数组 { 4, 5, 6 } 会产生 { 1, 2, 3, 4, 5, 6 }。两个参数必须是相同数据类型的数组。
使用对象数组时,函数返回的数据必须转换为对象数组的数据类型。例如:SomeClass[] items =
(SomeClass[]) concat(array1, array2)
.
例子
String[] sa1 = { "OH", "NY", "CA"};
String[] sa2 = { "KY", "IN", "MA"};
String[] sa3 = concat(sa1, sa2);
println(sa3);
// Prints updated array contents to the console:
// [0] "OH"
// [1] "NY"
// [2] "CA"
// [3] "KY"
// [4] "IN"
// [5] "MA"
有关的
相关用法
- Processing continue用法及代码示例
- Processing constrain()用法及代码示例
- Processing color()用法及代码示例
- Processing copy()用法及代码示例
- Processing cos()用法及代码示例
- Processing color用法及代码示例
- Processing colorMode()用法及代码示例
- Processing case用法及代码示例
- Processing clip()用法及代码示例
- Processing camera()用法及代码示例
- Processing curveDetail()用法及代码示例
- Processing catch用法及代码示例
- Processing char()用法及代码示例
- Processing ceil()用法及代码示例
- Processing curveVertex()用法及代码示例
- Processing createFont()用法及代码示例
- Processing circle()用法及代码示例
- Processing char用法及代码示例
- Processing createImage()用法及代码示例
- Processing createShape()用法及代码示例
- Processing class用法及代码示例
- Processing curve()用法及代码示例
- Processing curveTightness()用法及代码示例
- Processing createInput()用法及代码示例
- Processing clear()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 concat()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。