黑马程序员技术交流社区

标题: [石家庄校区] 学习总结 [打印本页]

作者: lishaos    时间: 2019-5-19 10:11
标题: [石家庄校区] 学习总结
stream流方法流收集反射概念获取类class对象的三种方式获取构造方法获取字段调用方法模块化编程
import com.test.MyInterface;
import com.test.MyInterfaceImpl1;
import com.test.MyInterfaceImpl2;

module MyOne {
    exports com.test;
    provides MyInterface with MyInterfaceImpl1, MyInterfaceImpl2;
}
import com.test.MyInterface;

module MyTow {
    requires MyOne;
    uses MyInterface;
}Junit测试分类Junit基本使用单元测试需要使用的注解注解概念作用常用的注解自定义注解
public @interface 注解名称{
   
}解析注解





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2