Pakiet | mx.data.crypto |
Klasa | public class IntUtil |
Dziedziczenie | IntUtil Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Właściwości publiczne
Metody publiczne
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
[statyczny]
Rotates x left n bits
| IntUtil | ||
[statyczny]
Rotates x right n bits
| IntUtil | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
[statyczny]
Outputs the hex value of a int, allowing the developer to specify
the endinaness in the process. | IntUtil | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Szczegół metody
rol | () | metoda |
public static function rol(x:int, n:int):int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Rotates x left n bits
Parametry
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
int — result of rotation operation.
|
ror | () | metoda |
public static function ror(x:int, n:int):uint
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Rotates x right n bits
Parametry
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
uint — result of rotation operation.
|
toHex | () | metoda |
public static function toHex(n:int, bigEndian:Boolean = false):String
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Outputs the hex value of a int, allowing the developer to specify the endinaness in the process. Hex output is lowercase.
Parametry
n:int — The int value to output as hex
| |
bigEndian:Boolean (default = false ) — Flag to output the int as big or little endian
|
String — A string of length 8 corresponding to the
hex representation of n ( minus the leading "0x" )
|
Tue Jun 12 2018, 12:06 PM Z