Comment créer une boucle indéfilée en Java

public void infiniteLoopUsingFor() {
    for (;;) {
        // do something
    }
}
Enchanting Elephant