In this post, we will see ways to create a infinite loop in Java
Creating an infinite loops endlessly might be an programming error but sometimes it will be intentional to support the behavior of your application
Using do..while
public void loopDoWhile() {
do {
// do something
} while (true);
}
Using infinite for
public void loopInfiniteFor() {
for (;;) {
// do something
}
}
Using While
public void loopWhile() {
while (true) {
// do something
}
}
Also published on Medium.