publicstaticint compare(short ushortA, short ushortB) { if (ushortA == ushortB) { return0;
} int a = ushortA & 0xFFFF; int b = ushortB & 0xFFFF; return a < b ? -1 : 1;
}
publicstaticint compare(int uintA, int uintB) { if (uintA == uintB) { return0;
} long a = uintA & 0xFFFFFFFFL; long b = uintB & 0xFFFFFFFFL; return a < b ? -1 : 1;
}
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet am 2026-06-27)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.