What do two semicolons mean in Java for loop?

前端 未结 5 1119
渐次进展
渐次进展 2020-12-17 07:51

I was looking inside the AtomicInteger Class and I came across the following method:

/**
 * Atomically increments by one the current value.
 *
          


        
5条回答
  •  有刺的猬
    2020-12-17 08:23

    That is a for ever loop. it is just a loop with no defined conditions to break out.

提交回复
热议问题