• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Ruby attr_accessor 使用,Ruby @成员变量 与 临时变量

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

#Class describ ------rdoc rules
#
= headers
#
this is header content
#
== sub header
#
this is sub header content
#
=== sub sub header
#
this is sub sub header
class Animal

attr_accessor :name
#-------------①

#this is the comment for the 'new' method !

def initialize type
name
= type #-------------②
end

#this is comment for 'shout' method
# Second Line
#* this is sub line 1
#* this is sub line 2

def shout
if name == 'dog'
puts
"wang! wang!"
elsif name
== 'cat'
puts
"miao! miao!"
elsif name
==nil
puts
"nil"
else
puts
"kao!"
end
end

end

dog
= Animal.new "dog"
puts dog.name
dog.shout
dog.name
= "cat"
dog.shout

本程序输出为:

nil

miao! miao!

-----------------

①: 成员变量

②: 临时变量

attr_accessor 表示后面的为类成员,同时为其提供外部访问能力。即相当于为其提供 get;  set;


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
RUBY元编程学习之”编写你的第一种领域专属语言“发布时间:2022-07-14
下一篇:
为Web开发提供的10个Ruby on Rails Gems发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap