Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/03/2008, 00:00
vdpazmino
 
Fecha de Ingreso: mayo-2007
Mensajes: 210
Antigüedad: 17 años, 7 meses
Puntos: 8
Re: Ayuda! Como declarar una instancia de este constructor

En la parte del constructor te falta instanciar el arreglo:

public Secuencia(String pTexto[]) {
this.texto= new String[Caracteres];
for (int i=0;i<MAXCAR;i++)
{
this.texto[i]=pTexto[i];
}
this.texto=pTexto;
}