markdown 斯卡拉警告

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 斯卡拉警告相关的知识,希望对你有一定的参考价值。

## val
- val should be initialized and couldn't change
  ```scala
  val x
  // error: '=' expected but ';' found.
  
  val x = 5
  x = 6
  // It couldn't change
  ```
  
## scope
- The val or var in {} couldn't be used out of {}
  ```scala
  {
    val x = 5
  }
  println(x)
  // x is not value
  ```

## Pattern matching
- Case is checked from first
- Case could be used in multiline
  ```scala
  val x = 1
  x match {
    case 1 =>
      println("1")
      println("OK")
    case _ =>
      println("NOT 1")
  }
  // 1
  // OK
  ```

以上是关于markdown 斯卡拉警告的主要内容,如果未能解决你的问题,请参考以下文章

markdown 反应模态警告

markdown 如何从依赖项中删除警告

markdown Kotlin扩展功能和属性警告

markdown 修复原始类型警告

markdown graphql apollo-client变异警告

markdown 在visual studio中设置编译器警告级别