繁体   English   中英

Ruby未定义的哈希方法

[英]Ruby undefined method for hash

我正在尝试使用以下代码将条目(已从键盘读取)添加到Ruby哈希:

if schemes.has_key?(schemeName)
   puts "This scheme has already been added "
 else
   schemes.add(schemeName)
 end

'schemes'是我的哈希的名称,'schemeName'是我存储用户输入的数据的变量。 但是,出于某种原因,我收到一条错误,说“添加”是一个未定义的方法......我认为这是哈希数据类型的内置方法?

我班的完整代码是:

class CourseModules
# To change this template use File | Settings | File Templates.
@@moduleScheme = nil
@@moduleYear = nil
#@moduleTitle = ""
@noOfModulesInScheme = 0

def self.moduleYear
 @@moduleYear
end

def initialize(v)
 @val = v
end
# Set and get the @val object value
def set (v)
 @val = v
end
def get
 return @val
end

def addModule
 moduleName = Module.new(30)
 moduleRefNo = Random(100)
 #moduleTitle = @moduleTitle
 moduleYear(4)

 print "What is the name of the module you would like to add?"
 moduleName = gets
 moduleRefNo
 printf "Which year does the module belong to?"
 @@moduleYear = gets
 puts "#{moduleName}, belonging to #{@@moduleYear} has been added to the system, with reference number #{moduleRefNo}."
 navigateTo Application

end

def self.addModuleToScheme
=begin
Create an empty hash for the schemes
=end
 schemes = Hash.new()
=begin
Allow user to enter scheme names into a set of variables, and use each scheme name as a hash/ array of modules.
Then allow the user to enter the the modules for each scheme into each of the hashes

Create specific hash elements by using the following line:
schemes = {:scheme1 => scheme1variable, :scheme2 => scheme2variable}
=end

 puts "What is the name of the scheme that you would like to add a module to? "
 schemeName = gets
=begin
Need to use an if statement here to check whether or not the scheme already exists, if it doesn't, create it, if it does,
tell the user that it does.
=end
 if schemes.has_key?(schemeName)
   puts "This scheme has already been added "
 else
   schemes.add(schemeName)
 end

 noOfModulesInScheme + 1
 moduleName.moduleScheme = schemeName
end
def removeModuleFromScheme
 moduleName.moduleScheme = nil
end

def queryModule

end

end

有人能指出为什么我得到一个未定义的方法错误?

哈希没有add方法( 见这里 )。 它确实有一个需要键和值对的store ,因此您的代码可能会读取:

if schemes.has_key?(schemeName)
   puts "This scheme has already been added "
else
   schemes.store(schemeName, scheme)
end

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM