Что означает этот шаблон 'String#format'?

Во время исследования для задачи (создать квитанцию) я нашел следующий код:

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

        // Einzelpreise - Waren
        double SEBox = 299.00;
        double Hauptplatine = 79.80;
        double Erweiterungsplatine =52.60;
        double Anschlusskabel = 19.50;
        double Firmware = 36.00;

        // Anzahl - Waren
        int anzSEBox = 1;
        int anzHauptplatine = 1;
        int anzErweiterungsplatine = 1;
        int anzAnschlusskabel = 2;
        int anzFirmware = 2;

        // Inhalt - Brieftasche
        double brieftasche = 550.00;

        // Gekaufte Waren
        double summe = 0;
        summe = summe + anzSEBox * SEBox;
        summe = summe + anzHauptplatine * Hauptplatine;
        summe = summe + anzErweiterungsplatine * Erweiterungsplatine;
        summe = summe + anzAnschlusskabel * Anschlusskabel;
        summe = summe + anzFirmware * Firmware;

        if (summe > brieftasche) {
            System.out.println("Nicht genuegend Geld in der Brieftasche");
        } else {

            System.out.println("____________________________________");
            System.out.println("DATCOM protelematik GmbH - Kassenbon");
            System.out.println("____________________________________");

            System.out.println(String.format("%-9s %2d x %5.2f EUR", "SEBox", anzSEBox, SEBox));
            System.out.println(String.format("%30.2f EUR", anzSEBox * SEBox));

            System.out.println(String.format("%-9s %2d x %5.2f EUR", "Hauptplatine", anzHauptplatine, Hauptplatine));
            System.out.println(String.format("%30.2f EUR", anzHauptplatine * Hauptplatine));

            System.out.println(String.format("%-9s %2d x %5.2f EUR", "Erweiterungsplatine", anzErweiterungsplatine, Erweiterungsplatine));
            System.out.println(String.format("%30.2f EUR", anzErweiterungsplatine * Erweiterungsplatine));

            System.out.println(String.format("%-9s %2d x %5.2f EUR", "Anschlusskabel", anzAnschlusskabel, Anschlusskabel));
            System.out.println(String.format("%30.2f EUR", anzAnschlusskabel * Anschlusskabel));

            System.out.println(String.format("%-9s %2d x %5.2f EUR", "Firmware", anzFirmware, Firmware));
            System.out.println(String.format("%30.2f EUR", anzFirmware * Firmware));

            System.out.println("____________________________________");

            System.out.println(String.format("%-9s %20.2f EUR", "Gesamt", summe));
            System.out.println(String.format("%-9s %20.2f EUR", "Gegeben", brieftasche));
            System.out.println();
            System.out.println(String.format("%-9s %20.2f EUR", "Zurueck", brieftasche - summe));
        }
    }
}

Но я не понимаю следующую строку:

System.out.println(String.format("%-9s %2d x %5.2f EUR", "Anschlusskabel", anzAnschlusskabel, Anschlusskabel));

Я понимаю что System.out.println для, но может кто-нибудь объяснить мне, что именно это для: "%-9s %2d x %5.2f EUR"?

Я думаю, что это для части, где код говорит:

SEBox      1 x 299,00 EUR
                        299,00 EUR
Hauptplatine  1 x 79,80 EUR
                         79,80 EUR
Erweiterungsplatine  1 x 52,60 EUR
                         52,60 EUR
Anschlusskabel  2 x 19,50 EUR
                         39,00 EUR
Firmware   2 x 36,00 EUR
                         72,00 EUR

но почему и как?

1 ответ

Решение

String.format используется для форматирования строки.

% является специальным символом, обозначающим, что следует инструкция форматирования.

Тип аргумента обозначается d, f, x а также s,

  • целые числа - d,

  • струны - с,

  • с плавающей точкой - f

  • целые числа в шестнадцатеричном формате - х.

%-9s: отформатирует строку как есть. Если строка содержит менее 9 символов, вывод будет дополнен справа.

%2d: отформатирует целое число как есть. Если количество цифр меньше 2, вывод будет дополнен слева.

%5.2f: отформатирует максимум 2 десятичных цифры числа. Вывод будет занимать не менее 5 символов. Если количество цифр недостаточно, оно будет дополнено.

Другие вопросы по тегам