在Ruby中,unless
关键字用于在条件为假时执行代码块。在方法定义中使用unless
可以让你根据条件来决定是否执行某个方法。以下是一个示例:
def my_method(param) # 默认情况下,如果参数为正数,则执行这个方法 puts "The number is positive." # 使用 unless 判断参数是否为负数 unless param < 0 puts "The number is not negative." end end # 调用方法,传入正数参数 my_method(5) # 输出: # The number is positive. # The number is not negative. # 调用方法,传入负数参数 my_method(-3) # 输出: # The number is positive.
在这个示例中,我们定义了一个名为my_method
的方法,它接受一个参数param
。在方法内部,我们使用unless
关键字检查param
是否为负数。如果param
不是负数(即为正数或零),则执行puts "The number is not negative."
代码块。