Processing, append()
用法介紹。
用法
append(array, value)
參數
array
(byte[], char[], int[], float[], String[], Object)
要追加的數組value
(byte, char, int, float, String, Object)
數組的新數據
返回
byte[], char[], int[], float[], String[], or Object
說明
將數組擴展一個元素並將數據添加到新位置。 element
參數的數據類型必須與數組的數據類型相同。
使用對象數組時,函數返回的數據必須轉換為對象數組的數據類型。例如:SomeClass[]
items = (SomeClass[]) append(originalArray, element)
.
例子
String[] sa1 = { "OH", "NY", "CA"};
String[] sa2 = append(sa1, "MA");
println(sa2);
// Prints updated array contents to the console:
// [0] "OH"
// [1] "NY"
// [2] "CA"
// [3] "MA"
相關用法
- Processing applyMatrix()用法及代碼示例
- Processing acos()用法及代碼示例
- Processing arrayCopy()用法及代碼示例
- Processing asin()用法及代碼示例
- Processing atan()用法及代碼示例
- Processing ambient()用法及代碼示例
- Processing ambientLight()用法及代碼示例
- Processing atan2()用法及代碼示例
- Processing arc()用法及代碼示例
- Processing alpha()用法及代碼示例
- Processing abs()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing FloatDict.sortKeysReverse()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing IntDict.add()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing FloatDict.sub()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 append()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。