给出一个具有“ handler”成员的“ delegate”结构,如何使用动态字符串调用该处理程序?
pub struct Processor {
callback: Box<FnMut()>,
message: Option<String>
}
impl Processor {
pub fn new<CB: 'static + FnMut()>(c: CB) -> Self {
Processor {
callback: Box::new(c),
message: Some("".into())
}
}
pub fn set_callback<CB: 'static + FnMut(&str)>(&mut self, callback: CB) {
self.callback = Box::new(callback);
}
pub fn set_message<S>(&mut self, message: S) where S: Into<String> {
self.message = Some(message.into());
}
pub fn process(&mut self) {
match self.message {
Some(string) => {
if self.message.chars().count() > 0 {
(self.callback)(self.message);
} else {
(self.callback)();
}
},
None => {}
}
}
}
impl EventEmitter {
pub fn new() -> Self {
EventEmitter {
delegates: Vec::new()
}
}
/// Register an Event and a handler
pub fn on(&mut self, event: Event, handler: Processor) {
self.delegates.push(Delegate::new(event, handler))
}
/// Run handlers on the emitted event
pub fn emit(&mut self, name: &'static str/*, with message!! */) {
for delegate in self.delegates.iter_mut(){
if delegate.event.name == name {
delegate.handler.process();
}
}
}
/// Run handlers on the emitted event
pub fn emit_with(&mut self, name: &'static str, message: &'static str) {
for delegate in self.delegates.iter_mut() {
if delegate.event.name == name {
delegate.handler.set_message(message);
delegate.handler.process();
}
}
}
}
然后我有:
emitter.on(
Event::new("TEST"),
Processor::new(|x| println!("Test: {}", x))
);
emitter.emit_with("TEST", "test");
但是编译器抱怨:
--> src/main.rs:97:3
|
97 | Processor::new(|x| println!("Test: {}", x))
| ^^^^^^^^^^^^^^ --- takes 1 argument
| |
| expected closure that takes 0 arguments
如果我在set_callback()定义中删除了“&str”类型参数:
set_callback<CB: 'static + FnMut()>(&mut self, callback: CB)
我可以使用不带任何参数的闭包来使其工作:
emitter.on( // emitter.emit("TEST");
Event::new("TEST"),
Processor::new(|| println!("static string."))
);
是否有一种方法可以将字符串传递到可以最终传递给处理程序的emit_with()函数?
答案 0 :(得分:1)
您在这里写过:
pub struct Processor {
callback: Box<FnMut(/* RIGHT HERE */)>,
message: Option<String>
}
您已声明一个不带参数的FnMut
(闭包)。
语法为FnMut(/* arguments to closure */)
,但您未提供任何语法。因此,您不能将确实接受参数的闭包传递给它。
您不能有一个同时接受一个参数且不同时接受一个参数的闭包。
此外,您使用了FnMut(&str)
,但仅在一个地方使用。您到处都需要它。由于您要传递或不传递字符串,因此我已将其转换为Optional<&str>
(因此闭包类型为FnMut(Option<&str>)
)。
我已经修改了您的代码,以使闭包采用可选的&str
。
这就是我建议您处理的方式:
pub struct Processor {
// The closure takes an optional string.
callback: Box<FnMut(Option<&str>)>,
message: Option<String>
}
impl Processor {
pub fn new<CB: 'static + FnMut(Option<&str>)>(c: CB) -> Self {
Processor {
callback: Box::new(c),
message: Some("".into())
}
}
pub fn set_callback<CB: 'static + FnMut(Option<&str>)>(&mut self, callback: CB) {
self.callback = Box::new(callback);
}
pub fn set_message<S>(&mut self, message: S) where S: Into<String> {
self.message = Some(message.into());
}
pub fn process(&mut self) {
match self.message {
Some(string) => {
// NOTE: Instead of .chars().count > 0
if !self.message.is_empty() {
(self.callback)(Some(self.message));
} else {
(self.callback)(None);
}
},
None => {}
}
}
}
注意:这未经测试,但应该可以使用。如果出现任何错误,请发表评论。