• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Ruby 之 class 中的 private、 protected、public
    Private
    private 函数只能 在本类和子类的 上下文中调用,且只能通过self访问。

    这个意思就是:private函数,只能在本对象内部访问到。

    对象实例变量(@)的访问权限就是 private。
    复制代码 代码如下:

    class AccessTest
    def test
    return “test private”
    end
    def test_other(other)
    “other object ”+ other.test
    end
    end
    t1 = AccessTest.new
    t2 = AccessTest.new

    p t1.test # => test private

    p t1.test_other(t2) # => other object test private


    # Now make 'test' private

    class AccessTest
    private :test
    end

    p t1.test_other(t2) #错误 in `test_other': private method `test' called for #AccessTest:0x292c14> (NoMethodError)


    Protected
    protect 函数只能 在本类和子类的 上下文中调用,但可以使用 other_object.function的形式。(这跟 C++ 的 private 模式等同)

    这个的关键是 protected函数可以在同类(含子类)的其它对象的内部中使用。

    # Now make 'test' protect

    class AccessTest
    protected:test
    end

    p t1.test_other(t2) # other object test private

    Public
    public 函数可以在任何地方调用。成员函数和常量的默认访问权限就是public。
    您可能感兴趣的文章:
    • Ruby中的public、private、protected区别小结
    • 简单谈谈Ruby的private和protected
    上一篇:Ruby 中关于日文转UTF-8及半角全角转换的技巧
    下一篇:ruby 学习笔记(1) 初识语法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Ruby 之 class 中的 private、 protected、public Ruby,之,class,中的,private,