我正在尝试使用不同的内部参数进行各种实现:
pub trait ERP {
fn new() -> Self;
fn sample(&self) -> f64;
}
pub struct Bernoulli {
p: f64
}
impl ERP for Bernoulli {
fun new(p: f64) -> Bernoulli {
Bernoulli { p: p }
}
fun sample(&self) -> f64 { self.p } // Filler code
}
pub struct Gaussian {
mu: f64,
sigma: f64
}
impl ERP for Gaussian {
fun new(mu: f64, sigma: f64) -> Gaussian {
Gaussian { mu: mu, sigma: sigma }
}
fun sample(&self) -> f64 { self.mu } // Filler code
}
但我当然得到
error: method new` has 1 parameter but the declaration in trait
`erp::ERP::new` has 0
因为我必须在特征中指定固定数量的参数。
我也不能让new
离开这个特性,因为那样会给出
error: method `new` is not a member of trait `ERP`
我的动机是我希望暴露的ERP界面与new
方法的保持一致,因为每个分布的必需参数都依赖于其实现背后的独特数学。有没有解决方法?
答案 0 :(得分:7)
不要使new
功能成为特征的一部分。不支持具有可变数量的输入参数的函数。