Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/06/2009, 08:14
1000eurista
 
Fecha de Ingreso: junio-2009
Mensajes: 11
Antigüedad: 15 años, 10 meses
Puntos: 0
Inicializacion de listas en C++

Hola,

Para mi programa necesito declarar una lista como static, y para ello he de inicializarla cuando la defino.

el codigo es:
Código:
typedef std::list<miObjeto*> List;

static List myList;
como se inicializa a null?

static List myList(nil)?
static List myList=nil?