Dlaczego niewłaściwe jest używanie etykiet break / continue w OOP (np. Java, C #)? [Zamknięte]

Powiedziano mi, że używanie etykiet break i continue w języku OOP nie jest stylem programowania OOP. Czy możesz szczegółowo wyjaśnić, dlaczego i jaki jest problem?

Sztuka polegała na tym słowie z etykietą. Miałem na myśli przerwę z etykietą / kontynuację.

class BreakWithLabelDemo {
    public static void main(String[] args) {

        int[][] arrayOfInts = {
            { 32, 87, 3, 589 },
            { 12, 1076, 2000, 8 },
            { 622, 127, 77, 955 }
        };
        int searchfor = 12;

        int i;
        int j = 0;
        boolean foundIt = false;

    search:
        for (i = 0; i < arrayOfInts.length; i++) {
            for (j = 0; j < arrayOfInts[i].length;
                 j++) {
                if (arrayOfInts[i][j] == searchfor) {
                    foundIt = true;
                    break search;
                }
            }
        }

        if (foundIt) {
            System.out.println("Found " + searchfor +
                               " at " + i + ", " + j);
        } else {
            System.out.println(searchfor +
                               " not in the array");
        }
    }
}

http://docs.oracle.com/javase/tutorial/java/nutsandbolts/branch.html

questionAnswers(5)

yourAnswerToTheQuestion