Ruby 类案例
下面将创建一个名为 Customer 的 Ruby 类,声明两个方法:
display_details:该方法用于显示客户的详细信息。
total_no_of_customers:该方法用于显示在系统中创建的客户总数量。
实例
#!/usr/bin/ruby
class Customer
@@no_of_customers=0
def initialize(id, name, addr)
@cust_id=id
@cust_name=name
@cust_addr=addr
end
def display_details()
puts “Customer id #@cust