【发布时间】:2017-09-07 20:55:45
【问题描述】:
我正在尝试为接收哈希作为参数的类创建一个初始化程序。哈希是一个 {String => Type} 哈希,可以嵌套。运行此代码时出现错误:
#file: types.cr
class Types
alias Type = Nil |
Bool |
Int32 |
Int64 |
Float64 |
String |
Array(Type) |
Hash(String, Type)
def initialize(@input : Type)
end
end
input = {"a" => {"b" => {"c" => {"c1" => 1, "c2" => 2, "c3" => true}}}}
s = Types.new(input)
这是我在运行上面的代码时遇到的错误:
$ crystal types.cr
Error in types.cr:16: instantiating 'Types:Class#new(Hash(String, Hash(String, Hash(String, Hash(String, Bool | Int32)))))'
s = Types.new(input)
^~~
in types.cr:11: instance variable '@input' of Types must be Types::Type, not Hash(String, Hash(String, Hash(String, Hash(String, Bool | Int32))))
def initialize(@input : Type)
^~~~~~
Crystal 可以做到这一点吗?我应该如何处理?
谢谢!
【问题讨论】: