本文介绍了“错误数量的参数(1 代表 0)"是什么意思?在 Ruby 中是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

参数错误:参数数量错误(1 代表 0)"是什么意思?

What does "Argument Error: wrong number of arguments (1 for 0)" mean?

推荐答案

当您定义一个函数时,您还定义了该函数需要工作的信息(参数).如果它被设计为在没有任何额外信息的情况下工作,并且你传递了一些信息,你就会得到那个错误.

When you define a function, you also define what info (arguments) that function needs to work. If it is designed to work without any additional info, and you pass it some, you are going to get that error.

示例:不接受任何参数:

Example:Takes no arguments:

def dog
end

接受参数:

def cat(name)
end

当你调用这些时,你需要用你定义的参数来调用它们.

When you call these, you need to call them with the arguments you defined.

dog                  #works fine
cat("Fluffy")        #works fine


dog("Fido")          #Returns ArgumentError (1 for 0)
cat                  #Returns ArgumentError (0 for 1)

查看 Ruby Koans 了解这一切.

这篇关于“错误数量的参数(1 代表 0)"是什么意思?在 Ruby 中是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 06:24