Ruby定义私有方法的两种办法 Ruby定义私有方法(private)的两种办法
人气:0想了解Ruby定义私有方法(private)的两种办法的相关内容吗,在本文为您仔细讲解Ruby定义私有方法的两种办法的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Ruby,定义,私有方法,private,办法,下面大家一起来学习吧。
#定义私有方法途径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
加载全部内容