3

所以我在这里,和 Rustlings 一起卡车,直到我在测试 4 中获得广泛支持。

它希望我编写一个满足以下代码的宏:

fn main() {
    if my_macro!("world!") != "Hello world!" {
        panic!("Oh no! Wrong output!");
    }
}

所以,我写了这个:

macro_rules! my_macro {
    ($val:expr) => {
        println!("Hello {}", $val);
    }
}

Rustlings 吐了出来:

error[E0308]: mismatched types
  --> exercises/test4.rs:15:31
   |
15 |     if my_macro!("world!") != "Hello world!" {
   |                               ^^^^^^^^^^^^^^ expected (), found reference
   |
   = note: expected type `()`
              found type `&'static str`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.

哪个,你知道的。我明白了。我明白问题是什么,但我不明白如何编写一个满足代码的宏。我可以更改我正在测试的代码,但这不是测试要我做的。我只是写一个宏。我难住了。我也不明白将宏封装在模块中有何帮助,但测试表明这是对模块和宏的测试。

4

1 回答 1

5

println!将打印到stdout. 相反,您只想格式化字符串并从宏中返回它。改为使用format!,并删除,;以便它返回表达式而不是()

macro_rules! my_macro {
    ($val:expr) => {
        format!("Hello {}", $val)
    }
}
于 2019-02-28T17:27:35.977 回答