作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想调用复合类型的构造函数WeightedPool1D
但我两个都试过了 WeightedPool1D(mask)
和 WeightedPool1D{Float64}(mask)
但它没有用。
谢谢!
Julia 版本:1.6.1
我的代码:
# creating composite type
struct WeightedPool1D{T}
n::Int
c::Int
mask::Matrix{Bool}
weight::Matrix{T}
function WeightedPool1D(mask::Matrix{Bool}) where T
c, n = size(mask)
weight = randn(T, c, n) / n
new{T}(n, c, mask, weight)
end
end
# create argument
mask = zeros(Bool, 3, 3)
调用
w = WeightedPool1D(mask)
给出错误
julia> w = WeightedPool1D(mask)
ERROR: UndefVarError: T not defined
调用
w = WeightedPool1D{Float64}(mask)
给出错误
julia> w = WeightedPool1D{Float64}(mask)
ERROR: MethodError: no method matching WeightedPool1D{Float64}(::Matrix{Bool})
最佳答案
这里的问题是内部构造函数。没有任何东西(从输入到构造函数)定义什么 T
应该。
如果你想要一个默认值 T
,说 Float64
,可以定义以下内部构造函数
struct WeightedPool1D{T}
n::Int
c::Int
mask::Matrix{Bool}
weight::Matrix{T}
# General constructor for any T, call as WeightedPool1D{Float64}(...)
function WeightedPool1D{T}(mask::Matrix{Bool}) where T
c, n = size(mask)
weight = randn(T, c, n) / n
new{T}(n, c, mask, weight)
end
# Construtors that defines a default T, call as WeightedPool1D(...)
function WeightedPool1D(mask::Matrix{Bool})
return WeightedPool1D{Float64}(mask) # Calls the other constructor, now with T = Int
end
end
示例调用:
mask = zeros(Bool, 3, 3)
WeightedPool1D(mask)
WeightedPool1D{Float32}(mask)
关于julia - 如何在 Julia 中正确调用参数构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67565538/
我是一名优秀的程序员,十分优秀!