类中的public,protect,private public method class Point def test end end 这样定义的test方法就是一个public方法可以在类内外使用 protected method protected protected 权限的函数只能在被本类或子类的上下文中调用,单可以使用other_object.function的形式.这个关键是可以调用本类的其他对象的protected函数 class Point def test end protec…
前言 Java基础-进阶继承,抽象类,接口 进阶继承 class Stu { int age = 1; } class Stuo extends Stu { int agee = 2; } class Demo{ Stuo stuo = new Stuo(); } 成员变量的特殊情况 成员函数 class Stu{ void show(){ System.out.println("Stu show"); } } class Stue extends Stu{ void show(){…