zoukankan      html  css  js  c++  java
  • Ruby的private和protected

    今天,下面这段程序让我纠结了很久,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就能正确执行。

  • 相关阅读:
    12_2 数据分析工具包。
    11_29
    11_28 mongoDB与scrapy框架
    11_28,selenium定位元素,cookies获取
    11_26爬虫find与findall
    day_93_11_25爬虫一requests,项目框架
    11_14flask的启动和orm,反向生成model
    11_13Local与偏函数
    11_12 路由与正则
    day83_11_1 阿里配python使用。
  • 原文地址:https://www.cnblogs.com/betarabbit/p/2761716.html
Copyright © 2011-2022 走看看