欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Ruby定义私有方法(private)的两种办法

程序员文章站 2024-01-16 10:59:16
#定义私有方法途径1: class c def public_method private_method end def pri...
#定义私有方法途径1:
class c
  def public_method
    private_method
  end
 
  def private_method 
  end
 
  private :private_method #定义方法为私有
end
 
#定义私有方法途径2:
class c
  def public_method
    private_method
  end
 
  private
  def private_method #定义私有方法
  end
end
 
c.new.public_method