Merge pull request #1 from Vikiboss/Vikiboss-patch-1

This commit is contained in:
Viki 2021-03-03 18:37:04 +08:00 committed by GitHub
commit 1648ae96ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -297,8 +297,8 @@ class Bicycle {
// Bicycle 类的成员变量和方法
public int cadence; // Public: 任意位置均可访问
private int speed; // Private: 只在同类中可以访问
protected int gear; // Protected: 可以在同类与子类中可以访问
String name; // default: 可以在包内中可以访问
protected int gear; // Protected: 可以在同类与子类中访问
String name; // default: 可以在包内访问
// 构造函数是初始化一个对象的方式
// 以下是一个默认构造函数