alny 1 Posted May 1, 2013 Report Share Posted May 1, 2013 ola . tenho 2 classes q são sub class de superClass, a seguir criei uma class auxiliar q vai receber array da minha super class. a minha duvida é: como q crio os meus objeto na função main? Link to post Share on other sites
alny 1 Posted May 1, 2013 Author Report Share Posted May 1, 2013 tenho isto assim: aluno e professor são sub class de pessoa , e a Casse Escola recebe um array de pesso: veja se isso deve ser assim Aluno a = new Aluno(new float[]{1,2.0f}, 1, "ss", "aa",2, EnumGenero.M,"sss"); Professor p = new Professor("sss",9299933, "ass",1, EnumGenero.M, "assas"); Pessoa [] pe = {a,p}; Escola e = new Escola(pe); Link to post Share on other sites
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now