如何使用比值更少的输入在Julia中构建构造函数?我有一个Int64数字数组,其中每个数字代表24个布尔值。最好的情况是我可以发送数组并返回一个包含每个组件数组的复合类型。这是我试过的代码。
type Status
Valve1::Array{Bool}
Valve2::Array{Bool}
Valve3::Array{Bool}
Valve4::Array{Bool}
Valve5::Array{Bool}
Valve6::Array{Bool}
Valve7::Array{Bool}
Valve8::Array{Bool}
# Constructor for Status type
function Status(vals::Array{Int64})
l = int64(length(vals))
Valve1 = Array(Bool,l)
Valve2 = Array(Bool,l)
Valve3 = Array(Bool,l)
Valve4 = Array(Bool,l)
Valve5 = Array(Bool,l)
Valve6 = Array(Bool,l)
Valve7 = Array(Bool,l)
Valve8 = Array(Bool,l)
# Parse Inputs
for i=1:l
# Byte 1
Valve1[i] = vals[i] & 2^(1-1) > 0
Valve2[i] = vals[i] & 2^(2-1) > 0
Valve3[i] = vals[i] & 2^(3-1) > 0
Valve4[i] = vals[i] & 2^(4-1) > 0
Valve5[i] = vals[i] & 2^(5-1) > 0
Valve6[i] = vals[i] & 2^(6-1) > 0
Valve7[i] = vals[i] & 2^(7-1) > 0
Valve8[i] = vals[i] & 2^(8-1) > 0
end # End of conversion
new(Valve1,Valve2,Valve3,Valve4,Valve5,Valve6,Valve7,Valve8)
end # End of constructor
end # End of type
这会导致no method convert(Type{Bool},Array{Bool,1})
错误。我试图用statuses = Status(StatusW)
实例化它,其中StatusW是一个Int64数组值。
有用的参考:Types
的Constructors和Julia documentation部分答案 0 :(得分:1)
声明需要如下。
Valve1::Vector{Bool}
导致我混淆的另一个因素是new(Valve1,...)
应该是构造函数中的最后一件事。我在println()
之后添加了调试new(Valve1,...)
行,导致类型返回 Nothing 。
完整的示例应如下所示。
type Status
Valve1::VectorBool}
Valve2::Vector{Bool}
Valve3::Vector{Bool}
Valve4::Vector{Bool}
Valve5::Vector{Bool}
Valve6::Vector{Bool}
Valve7::Vector{Bool}
Valve8::Vector{Bool}
# Constructor for Status type
function Status(vals::Array{Int64})
l = int64(length(vals))
Valve1 = Array(Bool,l)
Valve2 = Array(Bool,l)
Valve3 = Array(Bool,l)
Valve4 = Array(Bool,l)
Valve5 = Array(Bool,l)
Valve6 = Array(Bool,l)
Valve7 = Array(Bool,l)
Valve8 = Array(Bool,l)
# Parse Inputs
for i=1:l
# Byte 1
Valve1[i] = vals[i] & 2^(1-1) > 0
Valve2[i] = vals[i] & 2^(2-1) > 0
Valve3[i] = vals[i] & 2^(3-1) > 0
Valve4[i] = vals[i] & 2^(4-1) > 0
Valve5[i] = vals[i] & 2^(5-1) > 0
Valve6[i] = vals[i] & 2^(6-1) > 0
Valve7[i] = vals[i] & 2^(7-1) > 0
Valve8[i] = vals[i] & 2^(8-1) > 0
end # End of conversion
new(Valve1,Valve2,Valve3,Valve4,Valve5,Valve6,Valve7,Valve8)
end # End of constructor
end # End of type
答案 1 :(得分:0)
错误消息是正确的,但不幸的是,很难理解Julia中的一般错误消息。
问题是您将字段声明为部分初始化的Array{Bool, N}
,当您尝试使用Array{Bool, 1}
调用构造函数时,这似乎不起作用。
正确的解决方案是声明类型包含完全初始化的类型Array{Bool,1}
或使用别名Vector{Bool}
。
你使用的是什么版本的朱莉娅?您发布的代码在最新的Julia master上为我工作,我认为在https://github.com/JuliaLang/julia/issues/4026解决时可能已经解决了这个问题。