Tipos simples o primitivos

Utilice el método getSize() para realizar una prueba comparativa del código y determinar el objeto más eficaz para la tarea.

Todos los tipos simples excepto String utilizan de 4 a 8 bytes de memoria. No existe ningún modo de optimizar la memoria utilizando un tipo específico para un tipo simple:

// Primitive types 
var a:Number; 
trace(getSize(a)); 
// output: 8 
 
var b:int; 
trace(getSize(b)); 
// output: 4 
 
var c:uint; 
trace(getSize(c)); 
// output: 4 
 
var d:Boolean; 
trace(getSize(d)); 
// output: 4 
 
var e:String;  
trace(getSize(e)); 
// output: 4

Al tipo Number, que representa un valor de 64 bits, se le asignan 8 bytes mediante la máquina virtual ActionScript (AVM), si no se le asigna ningún valor. Todos los demás tipos simples se almacenan en 4 bytes.

// Primitive types 
var a:Number = 8; 
trace(getSize(a)); 
// output: 4 
 
a = Number.MAX_VALUE; 
trace(getSize(a)); 
// output: 8

El comportamiento difiere para el tipo String. La cantidad de almacenamiento asignada se basa en la longitud de la cadena:

var name:String;         
trace(getSize(name)); 
// output: 4 
             
name = ""; 
trace(getSize(name)); 
// output: 24 
         
name = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.";     
trace(getSize(name)); 
// output: 1172

Utilice el método getSize() para realizar una prueba comparativa del código y determinar el objeto más eficaz para la tarea.