代码编辑器:
x
1
# !/usr/bin/ruby -w
2
# -*- encoding:utf-8 -*-
3
# filename: main.rb
4
# author: 简单教程(www.twle.cn)
5
# Copyright © 2015-2065 www.twle.cn. All rights reserved.
6
7
8
# 定义类
9
class Box
10
# 构造方法
11
def initialize(w,h)
12
@width, @height = w, h
13
end
14
# 实例方法
15
def getArea
16
@width * @height
17
end
18
end