标签:
杂谈 |
分类: CoreJava |
while可以用作无穷循环,很多地方都用到无穷循环。一个无穷循环如下所示:
while(true) {
循环内容;
...
}
标签:
杂谈 |
分类: CoreJava |