1. 首页
  2. 数据库
  3. 其它
  4. Ruby简洁学习笔记(二):类继承、属性、类变量

Ruby简洁学习笔记(二):类继承、属性、类变量

上传者: 2021-01-03 22:34:01上传 PDF文件 50.89KB 热度 24次
1.如何声明一个子类 代码如下: class Treasure < Thing 这样Thing类中的属性name,description都被Treasure继承 2.以下三种方式传入父类initialize方法的参数分别是什么? 代码如下: # This passes a, b, c to the superclass def initialize( a, b, c, d, e, f ) super( a, b, c ) end # This passes a, b, c to the superclass def initialize( a, b, c ) super en
用户评论