Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class Boat extends Vehicle{
  2. public Boat(String brand,int kilometers){
  3. super(brand,kilometers);
  4. }
  5.  
  6. @Override
  7. public String doStuff() {
  8. return "je suis "+ this.getBrand()+ " et je fais glou glou ! ";
  9. }
  10.  
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement