ruby – 如何访问类变量?

前端之家收集整理的这篇文章主要介绍了ruby – 如何访问类变量?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
class TestController < ApplicationController

  def test
    @goodbay = TestClass.varible
  end
end

class TestClass
  @@varible = "var"
end

我得到错误

undefined method 'varible' for TestClass:Class

在线@goodbay = TestClass.varible

怎么了?

解决方法

在Ruby中,必须通过该对象上的方法读取和写入对象的@instance变量(和@@类变量).例如:
class TestClass
  @@variable = "var"
  def self.variable
    # Return the value of this variable
    @@variable
  end
end

p TestClass.variable #=> "var"

Ruby有一些内置方法可以为您创建简单的访问器方法.如果要在类上使用实例变量(而不是类变量):

class TestClass
  @variable = "var"
  class << self
    attr_accessor :variable
  end
end

Ruby on Rails专门为类变量提供a convenience method

class TestClass
  mattr_accessor :variable
end
原文链接:https://www.f2er.com/ruby/270833.html

猜你在找的Ruby相关文章