Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
fun main() { // Allocates 1MB of memory = 1,048,576 bytes val oneMbArray = ByteArray(1024 * 1024) println("Allocated ${oneMbArray.size} bytes.") } /* run: Allocated 1048576 bytes. */
fun main() { // Allocates 1MB of memory = 1,048,576 bytes val oneMbArray = ByteArray(1024 * 1024) { 0 } // Initializes all bytes to 0 println("Allocated ${oneMbArray.size} bytes.") } /* run: Allocated 1048576 bytes. */