首页 > 编程 > Ruby > 正文

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

2020-10-29 19:38:56
字体:
来源:转载
供稿:网友
#定义私有方法途径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 #定义私有方法  endend C.new.public_method

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表