Ruby静态方法在Ruby中是什么样的?

前端之家收集整理的这篇文章主要介绍了Ruby静态方法在Ruby中是什么样的?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Java中,’静态方法’看起来像这样:
class MyUtils {
    . . .
    public static double mean(int[] p) {
        int sum = 0;  // sum of all the elements
        for (int i=0; i<p.length; i++) {
            sum += p[i];
        }
        return ((double)sum) / p.length;
    }
    . . .
}

// Called from outside the MyUtils class.
double meanAttendance = MyUtils.mean(attendance);

编写“静态方法”的等效“Ruby方式”是什么?

解决方法

Anders的回答是正确的,但是对于像你不需要使用类的实用方法,你可以把方法放在 module中:
module MyUtils
  def self.mean(values)
    # implementation goes here
  end
end

方法将以相同的方式调用

avg = MyUtils.mean([1,2,3,4,5])
原文链接:https://www.f2er.com/ruby/274175.html

猜你在找的Ruby相关文章