代码之家  ›  专栏  ›  技术社区  ›  Armando Pérez Marqués

为什么'let true=false'失败,真的有可能吗?

  •  1
  • Armando Pérez Marqués  · 技术社区  · 6 年前

    有可能做到这一点吗?我本来想看看 true 可以重新定义,然后我看到 实际上是一个关键字。

    是否可以“修复”模式错误并获得“You can't-assign-to-a-keyword-error”?

    fn main() {
        let true = false;
    }
    

    我得到:

    error[E0005]: refutable pattern in local binding: `false` not covered
     --> src/main.rs:2:9
      |
    2 |     let true = false;
      |         ^^^^ pattern `false` not covered
    

    Playground

    2 回复  |  直到 6 年前
        1
  •  5
  •   yorodm    6 年前

    错误信息没有问题。你在用 refutable pattern 在一个 let 装订和 只允许不可辩驳的模式。

    换句话说,当你这样做的时候:

    let variable = value
    

    您没有给变量赋值。您正在创建一个绑定,其中左侧与右侧的内容匹配。这应该是一个不可辩驳的模式,因为比赛必须总是成功的。

        2
  •  2
  •   Peter Hall    6 年前

    我不知道你想做什么,为什么 希望 去做!如果一种语言允许你重新定义 true false 我相信这至少是 The Daily WTF .

    是否可以“修复”模式错误并获得“You can't-assign-to-a-keyword-error”?

    常量定义不允许模式,因此通过尝试重新定义 作为一个 const :

    const true: bool = false;
    

    这会产生一个更类似于您所追求的错误:

    error: expected identifier, found keyword `true`
      --> src/main.rs:1:7 
      | 
    1 | const true: bool = false;
      | ^^^^ expected identifier, found keyword