bicycle.java

来自「北京大学出版社的」· Java 代码 · 共 14 行

JAVA
14
字号
class Vehicle {
   protected void goSomewhere() {
      System.out.println( "travelling..." );
   }
}
public class Bicycle extends Vehicle {
   public void goSomewhere() {
      System.out.println( "pedalling..." );
   }
   public static void main( String[] args ) {
      Bicycle x = new Bicycle();
      x.goSomewhere();
   }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?