Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public class Neuve extends Voiture {
  2.  
  3.  
  4. Option[] Options = new Option[4] ;
  5.  
  6.  
  7. public Neuve () {}
  8.  
  9. public Neuve (int px , String mat , Option opts) // Demandé à la prof 1...n
  10. {
  11. super( mat , px) ;
  12. int i =0;
  13.  
  14. for( Option opt : opts ){
  15. this.Options[i] = opt;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement