摘要:
import junit.framework.TestCase import org.junit.Test import scala.runtime.RichByte //数据类型 class Demo2 extends TestCase { //规则1 定义整数类型变量时,默认数据类型是java中int类型 //规则2 当数值范围超过int值区间,会编译失败,需要在... 阅读全文
摘要:
import junit.framework.TestCase import org.junit.Test //变量 //var 代表变量 //val 代表常量 //关键字 class,extends,def,val,var //scala中建议使用val class Demo1 extends TestCase { //VAR def testParams(... 阅读全文