自动化测试之路(三) ruby里的get与set方法

照例可以先看端程序

class Person
 
  def initialize( name,age=18 )
    @name = name
    @age = age
    @motherland = "China"
  end
 
  def talk
    puts "my name is "+@name+", age is "+@age.to_s
    if  @motherland == "China"
      puts "I/'m Chinese."
    else
      puts "I/'m foreigner."
    end
  end
 
  attr_writer :motherland

 
end

p1=Person.new("kaichuan",20)
p1.talk

p2=Person.new("Ben")
p2.motherland="ABC"
p2.talk

 

 

程序运行结果

 my name is kaichuan, age is 20
I'm Chinese.
my name is Ben, age is 18
I'm foreigner.
>Exit code: 0

 

有过面向对象编程语言经历的童鞋很容易可以看明白,但是里面值的一提的是这句:“attr_writer :motherland”

这句话相当于我们面向对象编程语言的set方法,也可以这样写

def motherland=(value)
   return @motherland =value
end

那么相应的get方法为 attr_ reader :motherland

相当于

def motherland
  return @motherland
end

相应的 attr_accessor :motherland 相当于attr_reader:motherland; attr_writer :motherland

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值