首页 > 代码库 > java多线程
java多线程
@Test public void useMmSectionSLEntityByBindCode2() throws InterruptedException { final String bindCode = "CSK000003"; final int[] count = {0, 0}; for (int i = 0; i < 1000; i++) { final int finalI = i; new Thread(new Runnable() { @Override public void run() { System.out.println("线程" + (finalI + 1) + "开始"); Long begin = System.currentTimeMillis(); List<String> strings = mmSectionSLService.useMmSectionSLEntityByBindCode(bindCode, 3); if (strings != null) { for (String s : strings) { System.out.println(s); } count[0] += 3; } count[1] += (System.currentTimeMillis() - begin) / 1000; } }).start(); } Thread.sleep(1000 * 10); System.out.println("成功使用号段数: " + count[0]); System.out.println("总共耗时: " + count[1]); }
java多线程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。