mirror of
https://github.com/Dichgrem/Java.git
synced 2025-12-17 04:51:58 -05:00
22 lines
334 B
Java
22 lines
334 B
Java
package com.study.demo3;
|
|
|
|
public class Vehicle {
|
|
protected String name;
|
|
|
|
public Vehicle(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public Vehicle() {
|
|
this.name = "Unknown Vehicle";
|
|
}
|
|
|
|
public void start() {
|
|
System.out.println("Vehicle Start");
|
|
}
|
|
|
|
public void stop() {
|
|
System.out.println("Vehicle Stop");
|
|
}
|
|
}
|