//导入
//(1) 创建包:在src上右键,新建软件包
//(2)填写包名:小写
//(3)在包上右键,创建类。自动加入包名
//(4)导入。import 包名.类名
//导入多个类
//import jh.yuanlixueyuan.bigdata.scala03.{A,B,C}
//导入包下的所有的类
//import jh.yuanlixueyuan.bigdata.scala03._
//import com.group1.Student
//把导入的成员重新改个名字
//格式:import 包名.{旧名字=>新名字}
//import com.group1.Student
//import jh.yuanlixueyuan.bigdata.scala03.{C=>c}
//导入所有,排除一部分
//import jh.yuanlixueyuan.bigdata.scala03.{C=>_,_}
object Test23 {
def main(args: Array[String]): Unit = {
// new A()
// new B()
// new C()
// val s1=new Student()
// s1.run()
// var s2 =new A()
// var s3 =new B()
// var s4 =new C()
def test(): Unit = {
// //局部导入
// import jh.yuanlixueyuan.bigdata.scala03._
// new A()
//}
// def test1(): Unit ={
// println("111")
// new A()
// }
// test()
// }
}
}
}