Advertisement
Guest User

Car

a guest
Jan 16th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.61 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package oop1;
  7.  
  8. /**
  9.  *
  10.  * @author BESTPC
  11.  */
  12. public class Car {
  13.    
  14.     public void start(){
  15.         System.out.println("Car : Started"); // method ในการสตาร์ท
  16.     }
  17.     public void move(){
  18.         System.out.println("Car : move"); // method ในเคลื่อนที่
  19.     }
  20.     public void Brakes(){
  21.         System.out.println("Car : Brakes"); // method เบรกรถ
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement