10/03/2008, 00:00
|
| | 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;
} |