当前位置 博文首页 > Ruby定义私有方法(private)的两种办法

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

    作者:admin 时间:2021-02-07 06:20

    #定义私有方法途径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
    

    js
下一篇:没有了