YD's blog

Posted 三 10 2月 2016

Scala for the impatient: ch3

定長數組用Array, 不定長數組用ArrayBuffer
在ArrayBuffer尾端添加或移除元素是高效操作(amortized constant time)

定長數組與不定長數組轉換

for loop要窮盡所有element用until 配 .length而不是to 配 .length (原因:index從0開始)

for loop

Array ArrayBuffer運算:

Category: Scala
Tags: Scala