Scala Throw关键字用法示例

你可以在代码中明确抛出异常。 Scala提供throw关键字引发异常。 throw关键字主要用于引发自定义异常。下面给出一个使用scala throw exception关键字的示例。
Scala投掷示例

class ExceptionExample2{def validate(age:Int)={if(age< 18)throw new ArithmeticException("You are not eligible")else println("You are eligible")}}object MainObject{def main(args:Array[String]){var e = new ExceptionExample2()e.validate(10) }}

【Scala Throw关键字用法示例】输出
java.lang.ArithmeticException: You are not eligible

    推荐阅读