`
lshh83
  • 浏览: 162491 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
相信研究多线程的人都会首先从这个经典事例开始: Stack类: class Stack { int count; String[] data = new String[20]; public synchronized void push(String str) { while (count == data.length) { try { this.wait(); } catch (InterruptedException e) { e.printStackTrace(); } } this.notify(); ...
写程序中用到了break,感觉熟悉而陌生,可能以前没怎么注意或对它理解的不够深刻.重新学习下.....    从定义上来看:在一具循环体中,如果用break返回, 则不管其后面是否有满足for中条件的情况,都不做for中的循环体,即不会做; 如果用continue返回,如果条件满足执行continue, 跳出下面语句的执行,而返回到for 语句的开头,再次判断for中的条件,从而根据条件执行其中的循环体内容.   自己写了个小的程序以便理解, public class BreakTest { public static void main(String args[]) { Syste ...
Global site tag (gtag.js) - Google Analytics