简单谈谈Ruby的private和protected
程序员文章站
2022-04-09 20:17:40
下面这段程序让我纠结了很久,ruby中private的概念真的很奇怪。。。
class test private
def test_print
puts...
下面这段程序让我纠结了很久,ruby中private的概念真的很奇怪。。。
class test private def test_print puts 'test' end end class test2 < test def test_print2 # self.test_print #=> 这里加上self就不能调用,private method `test_print' called for # (nomethoderror) test_print #=> 不加self就能调用 end end test2.new.test_print2
为什么不加self的话,private也可以调用父类的方法呢?
原来在ruby中,private和java或者其他语言不一样,子类也可以调用,只是不能指定调用者。
翻了下《the ruby way》,书上说:
private:类和子类都能调用,但是private方法不能指定调用者,默认为self。
protected:类和子类都能调用,可以指定调用者。
这就解释了为什么上面的代码中,用self调用会出错,而不加self就能正确执行。