Tema: sobre clases
Ver Mensaje Individual
  #5  
Antiguo 13-07-2006
Thalia Thalia is offline
Registrado
 
Registrado: jul 2006
Posts: 5
Reputación: 0
Thalia Va por buen camino
explico la duda

Código Delphi [-]
{class estudiante}
TEstudiante=Class
private
  fCantNota:Integer;
  fNumero:Integer;
  fNombre:string;
  fEdad:Integer;
  fListaNota:Array of TNota;
public
  Constructor Create(aNumero:Integer;aNombre:string;aEdad:Integer);
  function AdicionarNota(aNota:TNota):Boolean;
  Function GetNota(aIndice:Integer):TNota;
  property Numero:Integer read fNumero write fNumero;
  property Nombre:string read fNombre write fNombre;
  property Edad:integer read fEdad write fEdad;
end;

esta es mi clase estudiante, donde se me traba el paraguas, como implementar la entrada de notas teniendo en cuenta que es un arreglo Help me

Última edición por dec fecha: 13-07-2006 a las 20:52:46.
Responder Con Cita