'da varaible'a nasıl atanır Array Tamponları ile Değişken Uzunluk Dizileri oluşturuyorum.ArrayBuffer scala
import scala.collection.mutable.ArrayBuffer
val b = ArrayBuffer[Int]() // empty array!
b += (1, 2, 3, 5) // append and output: ArrayBuffer(1, 2, 3, 5)
Şimdi hata var, ben yeni değişken c Tampon atamak istiyorsanız, Tersine bir
var a = Array[Int]() // a(0) = 10 // error because a is empty array
a = b.toArray // Array(1, 1, 2)
b değişkeni atamak istiyoruz. c
ait
var c = ArrayBuffer[Int]()
c = a.toBuffer // Conversely, convert the array a to an array buffer.
<console>:8: error: missing arguments for method apply in class GenericCompanion; follow this method with `_' if you want to treat it as a partially applied function
var c = ArrayBuffer[Int]