fork download
  1. abstract class Vehicle {
  2. abstract void start(); // Abstract method (no body)
  3. }
  4.  
  5. class Car extends Vehicle {
  6. void start() {
  7. System.out.println("Car starts with a key.");
  8. }
  9. }
  10.  
  11. public class Main {
  12. public static void main(String[] args) {
  13. Vehicle myCar = new Car();
  14. myCar.start(); // Output: Car starts with a key.
  15. }
  16. }
Success #stdin #stdout 0.07s 54548KB
stdin
Standard input is empty
stdout
Car starts with a key.