我是靠谱客的博主 任性电源,这篇文章主要介绍ruby-setter方法,现在分享给大家,希望可以做个参考。

当程序需要在程序的某个时间点上而不是在intialize方法中设置或改变一个对象的状态,如何给实例变量赋值,这是可以用setter方法解决。
代码:
      class Teacher
          def initalize(name,date)
                 @name=name
                 @date=date
          end
          def set_color(color)
           @color=color
          end
      end

teachea=Teacher.new("Wfeng","11/12/13")
teacher.set_color("red")
这里实例变量@color 在setter方法 set_color,可以随时重新赋值。

最后

以上就是任性电源最近收集整理的关于ruby-setter方法的全部内容,更多相关ruby-setter方法内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部