标签:sys 打印 模式匹配 each object 模式 接收参数 技术 没有
1 代码示范
/** * @author zhangjin * @create 2019-06-09 11:15 */ object TestMarnArgs { def main(args: Array[String]): Unit = { // 检验参数 if (args.length != 2) { println( """ |Usage: testMain |Param: | first 第一个参数 | two 第二个参数 """.stripMargin) sys.exit(-1) // -1 非正常退出 } // 接收参数(模式匹配了) val Array(first, two) = args args.foreach(println) } }
2 填写参数
3 输出效果
4 没有填写参数,打印提示信息
标签:sys 打印 模式匹配 each object 模式 接收参数 技术 没有
原文地址:https://www.cnblogs.com/QuestionsZhang/p/10992964.html