谨慎溪流

文章
6
资源
0
加入时间
3年0月9天

反射所要知道的

属性的作用域在方法中,参数的作用域也在方法中,如果属性和参数命名相同了的话? 那么到底取哪个值?public class HelloWorld { int i = 1; //属性名是i public void method1(int i){ //参数也是i System.out.println(i); } public static void main(String[] args) { new HelloWorld().metho

springBoot中配置线程池

线程池配置文件(application-threadPool.properties):#################【threadPool config】##################executor.corePoolSize=5executor.maxPoolSize=10executor.queueCapacity=20executor.keepAliveSeconds=60executor.threadNamePrefix=threadPoolExecutor线程池配置,