Paket | mx.data.crypto |
Sınıf | public class IntUtil |
Miras Alma | IntUtil Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
[statik]
Rotates x left n bits
| IntUtil | ||
[statik]
Rotates x right n bits
| IntUtil | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
[statik]
Outputs the hex value of a int, allowing the developer to specify
the endinaness in the process. | IntUtil | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Yöntem Ayrıntısı
rol | () | yöntem |
public static function rol(x:int, n:int):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Rotates x left n bits
Parametreler
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
int — result of rotation operation.
|
ror | () | yöntem |
public static function ror(x:int, n:int):uint
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Rotates x right n bits
Parametreler
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
uint — result of rotation operation.
|
toHex | () | yöntem |
public static function toHex(n:int, bigEndian:Boolean = false):String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
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, 01:09 PM Z