package com.study.demo3; public class Train extends Vehicle { @Override public void start() { System.out.println("The train is started"); } }