Die Math.clz32()
Funktion zählt die führenden Nullbits in der 32-Bit binär Repräsentation einer Nummer.
Syntax
Math.clz32(x)
Parameter
x
- Eine Nummer.
Rückgabewert
Die Anzahl der führenden Nullbits in der 32-Bit binör Repräsentation der übergebenen Zahl.
Beschreibung
"clz32
" steht für CountLeadingZeroes32 (AnzahlFührenderNullen32)
.
Wenn x
keine Nummer ist, wird x
in eine Nummer konvertiert. Danach wird diese Nummer in einen 32-Bit vorzeichenlose Ganzzahl (unsigned integer) konvertiert.
Wenn die konvertierte 32-Bit vorzeichenlose Zahl 0
ist, so wird die Funktion 32 zurück geben, weil alle Bits 0
sind.
Diese Funktion ist nützlich für Systeme, die in zu JavaScript kompilieren (z. B. Emscripten).
Beispiele
Einsatz von Math.clz32()
Math.clz32(1); // 31 Math.clz32(1000); // 22 Math.clz32(); // 32 [NaN, Infinity, -Infinity, 0, -0, null, undefined, 'foo', {}, []].filter( function(n) { return Math.clz32(n) !== 32 }); // [] Math.clz32(true); // 31 Math.clz32(3.5); // 30
Polyfill
Dieser Polyfill ist abhängig von Math.imul
.
Math.clz32 = Math.clz32 || (function () { 'use strict'; var table = [ 32, 31, 0, 16, 0, 30, 3, 0, 15, 0, 0, 0, 29, 10, 2, 0, 0, 0, 12, 14, 21, 0, 19, 0, 0, 28, 0, 25, 0, 9, 1, 0, 17, 0, 4, , 0, 0, 11, 0, 13, 22, 20, 0, 26, 0, 0, 18, 5, 0, 0, 23, 0, 27, 0, 6, 0, 24, 7, 0, 8, 0, 0, 0] // Adapted from an algorithm in Hacker's Delight, page 103. return function (x) { // Note that the variables may not necessarily be the same. // 1. Let n = ToUint32(x). var v = Number(x) >>> 0 // 2. Let p be the number of leading zero bits in the 32-bit binary representation of n. v |= v >>> 1 v |= v >>> 2 v |= v >>> 4 v |= v >>> 8 v |= v >>> 16 v = table[Math.imul(v, 0x06EB14F9) >>> 26] // Return p. return v } })();
Spezifikationen
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) Die Definition von 'Math.clz32' in dieser Spezifikation. |
Standard | Initial definition. |
ECMAScript 2017 Draft (ECMA-262) Die Definition von 'Math.clz32' in dieser Spezifikation. |
Entwurf |
Browserkompatibilität
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 38 | 31 (31) | Nicht unterstützt | 25 | Nicht unterstützt |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | Nicht unterstützt | Nicht unterstützt | 31.0 (31) | Nicht unterstützt | Nicht unterstützt | Nicht unterstützt |
Siehe auch
Schlagwörter des Dokuments und Mitwirkende
Schlagwörter:
Mitwirkende an dieser Seite:
schlagi123
Zuletzt aktualisiert von:
schlagi123,