Scala 槽点 - require

2019-10-12 08:26:17来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

Scala 槽点 - require

require

def this(name: String, age: Int) = {
  this()
  require(name != null && !name.isEmpty, "name")
  require(age > 0, "illegal age")
  Preconditions.checkArgument(name != null && !name.isEmpty, "name required")  // 使用 guava 工具类,这行编译不过... 改写为下两种调用方式可通过
// Preconditions.checkArgument(name != null && !name.isEmpty, "name required".asInstanceOf[Any])  
// Preconditions.checkArgument(name != null && !name.isEmpty, "name required", null)
  setAge(age)
  setName(name)
}

什么鬼

  1. require
    • 函数签名: final def require(requirement: Boolean, message: => Any) ,注意第二个参数类型是一个函数
    • 以上栗子中调用了两次 require 函数,生成两个匿名对象...
  2. ambiguous reference to overloaded definition
    • 编译错误信息:
      Error:(44, 21) ambiguous reference to overloaded definition, both method checkArgument in object Preconditions of type (x$1: Boolean, x$2: String, x$3: Object*)Unit and method checkArgument in object Preconditions of type (x$1: Boolean, x$2: Any)Unit match argument types (Boolean,String) Preconditions.checkArgument(name != null && !name.isEmpty, "name required")

原文链接:https://www.cnblogs.com/xsj24/p/11649402.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:SpringBoot 教程之属性加载详解

下一篇:部署系统报404.有可能是tomcat存在多个进程