Ruby 之 class 中的 private、 protected、public
程序员文章站
2022-03-29 22:46:23
private private 函数只能 在本类和子类的 上下文中调用,且只能通过self访问。 这个意思就是:private函数,只能在本对象内部访问到。 对象实例变量(...
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。
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。
上一篇: ionic android
下一篇: Powershell小技巧之创建短网址
推荐阅读
-
c/c++ 继承与多态 继承中的public, protected, private
-
详谈PHP中public,private,protected,abstract等关键字的用法
-
Ruby中的public、private、protected区别小结
-
PHP中const,static,public,private,protected的区别
-
php class中public,private,protected的区别以及实例分析
-
C++中,public、protected、private三者的区别讲解
-
Ruby 之 class 中的 private、 protected、public
-
php5中public,private,protected 三种类属性的区别
-
php5中public,private,protected 三种类属性的区别
-
PHP5中的访问控制!public ,private,protected