狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開(kāi)發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

7種JavaScript 中位運(yùn)算符的神奇用法

admin
2024年10月13日 22:44 本文熱度 392

?


JavaScript與許多其他編程語(yǔ)言不同,JavaScript 沒(méi)有定義不同類型的數(shù)字,如整數(shù)、短整型、長(zhǎng)整型、浮點(diǎn)型等。


整數(shù)精度(不帶小數(shù)點(diǎn)或指數(shù)表示法)最多為 15 位。小數(shù)精度的最大位數(shù)為 17 位,但浮點(diǎn)運(yùn)算并不總是 100% 準(zhǔn)確。

位運(yùn)算直接計(jì)算二進(jìn)制位,位運(yùn)算直接處理每個(gè)位。它是一種非常低級(jí)的操作。優(yōu)點(diǎn)是速度極快,但缺點(diǎn)是非常不直觀,在很多場(chǎng)合不能使用。

位運(yùn)算只對(duì)整數(shù)起作用。如果操作數(shù)不是整數(shù),則在運(yùn)行前會(huì)自動(dòng)轉(zhuǎn)換為整數(shù)。

在JavaScript內(nèi)部,值是以64位浮點(diǎn)數(shù)的形式存儲(chǔ)的,但是進(jìn)行位運(yùn)算時(shí),是以32位有符號(hào)整數(shù)進(jìn)行運(yùn)算的,返回值也是32位有符號(hào)整數(shù)。

JS中常用的7個(gè)位運(yùn)算符

1.按位與(AND)&

&將二進(jìn)制數(shù)中相應(yīng)的位按照特定的方式組合并運(yùn)算,如果相應(yīng)位全為1,結(jié)果為1,如果任意位為0,結(jié)果為0。

// The binary representation of 1 is: 00000000 00000000 00000000 00000001// The binary representation of 3 is: 00000000 00000000 00000000 00000011// -----------------------------// The binary representation of 1 is: 00000000 00000000 00000000 00000001console.log(1 & 3) // 1

2. 按位或(OR)|

| 該運(yùn)算符與&的區(qū)別在于,若任意一個(gè)操作數(shù)在相應(yīng)位為1,則結(jié)果為1。

// The binary representation of 1 is: 00000000 00000000 00000000 00000001// The binary representation of 3 is: 00000000 00000000 00000000 00000011// -----------------------------// The binary representation of 3 is: 00000000 00000000 00000000 00000011console.log(1 | 3) // 3

3. 按位異或(XOR)^

^如果兩個(gè)操作數(shù)位對(duì)應(yīng)只有一個(gè)1,則結(jié)果為1,其他都為0。

// The binary representation of 1 is: 00000000 00000000 00000000 00000001// The binary representation of 3 is: 00000000 00000000 00000000 00000011// -----------------------------// The binary representation of 2 is: 00000000 00000000 00000000 00000010console.log(1^3) // 2

4. 按位非(NOT)~

~ 該運(yùn)算符是將位取反,1變成0,0變成1,也就是求二進(jìn)制的補(bǔ)碼。

// The binary representation of 1 is: 00000000 00000000 00000000 00000001// The binary representation of 3 is: 00000000 00000000 00000000 00000011// -----------------------------// 1's inverse binary representation: 11111111 11111111 11111111 11111110// Since the first bit (sign bit) is 1, this number is a negative number. JavaScript internally uses complement code to represent negative numbers, that is, you need to subtract 1 from this number, take the inverse again, and then add a negative sign to get the decimal value corresponding to the negative number.// -----------------------------// The inverse of 1 minus 1: 11111111 11111111 11111111 11111101// Negative code: 00000000 00000000 00000000 00000010// Represented as decimal plus minus sign: -2console.log(~ 1) // -2

簡(jiǎn)單記憶:一個(gè)數(shù)和它自身的取反值相加等于-1。

5.左移<<

<<運(yùn)算符將指定值的二進(jìn)制數(shù)的所有位向左移動(dòng)指定的次數(shù)。

移動(dòng)規(guī)則:丟棄高位,用0填充低位,即把所有數(shù)按二進(jìn)制形式向左移動(dòng)相應(yīng)的位數(shù),去掉高位(丟棄),去掉低位。

空白處用零填充。

// The binary representation of 1 is: 00000000 00000000 00000000 00000001// -----------------------------// The binary representation of 2 is: 00000000 00000000 00000000 00000010console.log(1 << 1) // 2

6. 有符號(hào)右移>>

>> 此運(yùn)算符將指定操作數(shù)的位向右移動(dòng)指定的位數(shù)。向右移出的位將被丟棄,最左邊的位將被復(fù)制以填充左側(cè)。由于新的最左邊的位始終與之前相同,因此符號(hào)位不會(huì)改變。這就是為什么它被稱為“符號(hào)通信”。

// The binary representation of 1 is: 00000000 00000000 00000000 00000001// -----------------------------// The binary representation of 0 is: 00000000 00000000 00000000 00000000console.log(1 >> 1) // 0

7. 無(wú)符號(hào)右移>>>

>>> 該運(yùn)算符將第一個(gè)操作數(shù)向右移動(dòng)指定的位數(shù)。向右移動(dòng)的位被丟棄,左側(cè)用0填充。由于符號(hào)位變?yōu)?,因此,結(jié)果始終為非負(fù)數(shù)。(譯注:即使向右移動(dòng)0位,結(jié)果也是非負(fù)數(shù)。)

對(duì)于非負(fù)數(shù),有符號(hào)和無(wú)符號(hào)右移總是返回相同的結(jié)果。例如,9 >>> 2 得到 2 和 9 >> 2 相同。

js中位運(yùn)算符的妙用

1).使用&運(yùn)算符判斷數(shù)字的奇偶性

// even & 1 = 0// odd & 1 = 1console.log(2 & 1) // 0console.log(3 & 1) // 1

2).使用 ~, >>, <<, >>>, | 來(lái)舍入

console.log(~~ 6.83) // 6console.log(6.83 >> 0) // 6console.log(6.83 << 0) // 6console.log(6.83 | 0) // 6// >>> cannot round negative numbersconsole.log(6.83 >>> 0) // 6

3).使用 ^ 完成值交換

var a = 5var b = 8a ^= bb ^= aa ^= bconsole.log(a)   // 8console.log(b)   // 5

4).使用&、>>、|完成rgb值與十六進(jìn)制顏色值之間的轉(zhuǎn)換

/**  * Hexadecimal color value to RGB  * @param {String} hex hexadecimal color string  * @return {String} RGB color string  */   function hexToRGB(hex) {     var hexx = hex. replace('#', '0x')     var r = hexx >> 16     var g = hexx >> 8 & 0xff     var b = hexx & 0xff     return `rgb(${r}, ${g}, $)`   }
/**  * RGB color to hexadecimal color  * @param {String} rgb RGB color string  * @return {String} Hexadecimal color string  */  function RGBToHex(rgb) {     var rgbArr = rgb. split(/[^\d]+/)     var color = rgbArr[1]<<16 | rgbArr[2]<<8 | rgbArr[3]     return '#'+ color.toString(16)  }// ------------------------------------------------ -hexToRGB('#ffffff') // 'rgb(255,255,255)'RGBToHex('rgb(255,255,255)') // '#ffffff'

總結(jié)

以上就是我今天與你分享的全部?jī)?nèi)容,希望今天的內(nèi)容對(duì)你有所幫助。

最后,感謝你的閱讀,祝編程愉快!


該文章在 2024/10/14 10:48:55 編輯過(guò)
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開(kāi)發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉(cāng)儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購(gòu)管理,倉(cāng)儲(chǔ)管理,倉(cāng)庫(kù)管理,保質(zhì)期管理,貨位管理,庫(kù)位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved