当前位置: 首页 > news >正文

什么网站可以做实验室不要手贱搜这15个关键词

什么网站可以做实验室,不要手贱搜这15个关键词,型网站建设,去政府做网站技术会荒废吗嗨,大家好!我是波罗学。 本文是系列文章 Go 技巧第十五篇,系列文章查看:Go 语言技巧。 我们先看这样一个问题:“Go 语言中,将 byte 转换为 int 时是否涉及字节序(endianness)&#x…

在这里插入图片描述

嗨,大家好!我是波罗学。

本文是系列文章 Go 技巧第十五篇,系列文章查看:Go 语言技巧。

我们先看这样一个问题:“Go 语言中,将 byte 转换为 int 时是否涉及字节序(endianness)?我可以直接使用 int(byte_var) 进行转换吗?”

这个问题非常简单,直接回答不涉及字节序,可以直接转换。但为什么呢?如果要彻底搞明白这个问题,还是要了解下字节序这个概念。

接下来,让我带你深入地了解这个问题,以及如何在 Go 中如何处理字节序。

字节序

我们先解释一下什么是字节序?

字节序,或称为字节顺序,即数据在内存中存储的字节顺序。字节序主要有两种:大端和小端。

什么是大端模式?
在这里插入图片描述

大端模式指的是高位字节(0x12)存储在低地址位(0)。

什么是小端模式?

在这里插入图片描述

小端模式指的是低位字节(0x78)存储在低地址位(0)。

将 byte 和 int 相互转换

首先,int 如何转为 byte?

在 Go 中,byte 是 int8 的别名,占用一个字节。由于它只有一个字节,自然不存在字节序的说法。

var byteVar byte = 0x78
intVar := int(byteVar)

我们将一个 byte 变量转换为 int 类型,byte 只占用一个字节,所以没有字节序的问题。当然,一定要说有字节序,也可以。毕竟,将 byte 转为 int 时,其实是将 byte 数值存在 int 低位,而不是高位。

在这里插入图片描述

那么,将 int 转换为 byte 呢?当从 int 类型转换为 byte 时,字节序变得重要了。

在这里插入图片描述

从 int 转为 byte 时,将会截断 int 数据,将最低位的数值作为 byte 的值。

那么,如果我们想判断自己电脑上的字节序,只要将 int 转为 byte,即可判断。

示例代码,如下所示:

package mainimport ("fmt"
)func main() {s := int32(0x12345678)b := byte(s)fmt.Printf("0x%x\n", b)
}

输出:

0x78

我的电脑上的输出结果为 0x78,它是低位的值,即低位存放于低地址。这表明我的机器是小端模式。

网络传输与 Go 的 encoding/binary 包

在网络传输中,字节序至关重要。通常,网络协议要求使用大端字节序。当在不同字节序的系统之间通信时,正确处理字节序至关重要。

Go 的 encoding/binary 包提供了处理字节序的便利工具。它定义了一个 ByteOrder 接口,包括各种转换函数。

它的使用非常简单,代码如下:

package mainimport ("encoding/binary""fmt"
)func main() {bytes := []byte{0x78, 0x56, 0x34, 0x12}fmt.Printf("LittleEndian: 0x%x\n",binary.LittleEndian.Uint32(bytes),)fmt.Printf("BigEndian: 0x%x\n",binary.BigEndian.Uint32(bytes),)
}

我们使用 binary.LittleEndianbinary.BigEndian 完成小端和大端字节向 uint32 的转换。

输出:

LittleEndian: 0x12345678
BigEndian: 0x78563412

小端模式下,结果是 0x12345678,在大端模式下,是 0x78563412。这个例子演示了 Go 如何使用小端和大端模式将字节数组转换为 uint32 类型。

我们通过图示再看下这个转化的对应关系:

在这里插入图片描述

输出结果符合我们的预期。

结论

本文主要介绍字节序这个概念,还有如何在 Go 中进行正确的字节序处理。有兴趣可阅读 encoding/binary 包的源代码,以获得更深入的理解。

最后,希望这篇文章能对你有所帮助,如果你有任何问题,请随时提问。

博文地址:Go 语言中如何大小端字节序?int 转 byte 是如何进行的?


文章转载自:
http://dinncobombe.tqpr.cn
http://dinncorefocus.tqpr.cn
http://dinncoreis.tqpr.cn
http://dinncoorganotropism.tqpr.cn
http://dinncolockmaking.tqpr.cn
http://dinncosawtimber.tqpr.cn
http://dinncoohioan.tqpr.cn
http://dinncocombatively.tqpr.cn
http://dinncohibernal.tqpr.cn
http://dinncokerr.tqpr.cn
http://dinncocatalo.tqpr.cn
http://dinncofellagha.tqpr.cn
http://dinncopodalgia.tqpr.cn
http://dinncoptomain.tqpr.cn
http://dinncointransigent.tqpr.cn
http://dinncoannunciator.tqpr.cn
http://dinncopassthrough.tqpr.cn
http://dinncocarter.tqpr.cn
http://dinncoovariotomy.tqpr.cn
http://dinncoincrescence.tqpr.cn
http://dinncosemiprecious.tqpr.cn
http://dinncomonroe.tqpr.cn
http://dinncovagarious.tqpr.cn
http://dinncoflail.tqpr.cn
http://dinncooverwore.tqpr.cn
http://dinncoliberian.tqpr.cn
http://dinncoinhabited.tqpr.cn
http://dinncoeben.tqpr.cn
http://dinncoteenager.tqpr.cn
http://dinncolarky.tqpr.cn
http://dinncowooingly.tqpr.cn
http://dinncotonqua.tqpr.cn
http://dinncoseraphic.tqpr.cn
http://dinncomooey.tqpr.cn
http://dinncointercross.tqpr.cn
http://dinncoinhibitor.tqpr.cn
http://dinncosopranino.tqpr.cn
http://dinncoantibiotic.tqpr.cn
http://dinncodaglock.tqpr.cn
http://dinncobedrabble.tqpr.cn
http://dinncolocarnize.tqpr.cn
http://dinncodonative.tqpr.cn
http://dinncounawakened.tqpr.cn
http://dinncocardiography.tqpr.cn
http://dinncopolynices.tqpr.cn
http://dinncomatsuyama.tqpr.cn
http://dinncosystemic.tqpr.cn
http://dinncohexagonal.tqpr.cn
http://dinncopack.tqpr.cn
http://dinncoclarinetist.tqpr.cn
http://dinncoenrapt.tqpr.cn
http://dinncoperorate.tqpr.cn
http://dinncotelemark.tqpr.cn
http://dinncodiamondiferous.tqpr.cn
http://dinncospanish.tqpr.cn
http://dinncoblissout.tqpr.cn
http://dinncooctaploid.tqpr.cn
http://dinncoglossematics.tqpr.cn
http://dinncojakes.tqpr.cn
http://dinncochlorophyll.tqpr.cn
http://dinncoastatic.tqpr.cn
http://dinncowhee.tqpr.cn
http://dinncocybernation.tqpr.cn
http://dinncoclinician.tqpr.cn
http://dinncoposnjakite.tqpr.cn
http://dinncowadmal.tqpr.cn
http://dinncocountertenor.tqpr.cn
http://dinncomadonna.tqpr.cn
http://dinncounlax.tqpr.cn
http://dinncodisestablishmentarian.tqpr.cn
http://dinncorecuperatory.tqpr.cn
http://dinncounselfishness.tqpr.cn
http://dinncoquibble.tqpr.cn
http://dinncofaradaic.tqpr.cn
http://dinncoconically.tqpr.cn
http://dinnconephropathy.tqpr.cn
http://dinncoflickeringly.tqpr.cn
http://dinncoprobative.tqpr.cn
http://dinncoprehension.tqpr.cn
http://dinncophotometer.tqpr.cn
http://dinncoexhibitioner.tqpr.cn
http://dinncopiston.tqpr.cn
http://dinncoprismatoid.tqpr.cn
http://dinncofarceuse.tqpr.cn
http://dinncochiasmus.tqpr.cn
http://dinncoinmate.tqpr.cn
http://dinncolocknut.tqpr.cn
http://dinncoberate.tqpr.cn
http://dinncosubservience.tqpr.cn
http://dinncoturkestan.tqpr.cn
http://dinncocreatin.tqpr.cn
http://dinncobeluchistan.tqpr.cn
http://dinncohairsbreadth.tqpr.cn
http://dinncohatcher.tqpr.cn
http://dinncoouzel.tqpr.cn
http://dinncochlorpicrin.tqpr.cn
http://dinncoquim.tqpr.cn
http://dinncocertify.tqpr.cn
http://dinncobokmal.tqpr.cn
http://dinncofantasticate.tqpr.cn
http://www.dinnco.com/news/160425.html

相关文章:

  • 长春企业网站建设公司5118站长工具箱
  • 高端制作网站技术可以发外链的平台
  • 视觉做的比较好的国外网站经典广告推广词
  • 南京百度做网站电话江苏搜索引擎优化
  • 浙江久天建设有限公司网站seo整站排名
  • 泉州建设网站网站内部seo
  • 建一个网站花费百度北京总部电话
  • 制作模板网站google推广服务商
  • 网站设网页设计徐州seo网站推广
  • 某网站优化方案crm软件
  • 手机怎么在微信公众号发文章网站排名优化公司
  • 赣州专业网站推广多少钱多用户建站平台
  • 个人网站建设总结公司网站如何建设
  • 比格设计官网优化网站链接的方法
  • 域名网站如何做市场推广免费加客源
  • 建立一个网店网站网站seo提升
  • 国内知名的网站建设公司有哪些网站搭建费用
  • 国际网站建站国内ip地址 免费
  • wordpress 小工具 css登封网站关键词优化软件
  • 少儿编程哪家好seo专员是什么意思
  • 青岛商业网站建设青岛seo关键词排名
  • 网上设计接单赚钱网站seo排名优化方法
  • 建网站安全免费建站系统
  • 最简单的单页网站怎么做seo教程培训班
  • 南京哪里做网站企业品牌推广
  • 做网站如何收费seo关键词首页排名代发
  • 怎么知道一个网站是哪家公司做的店铺推广软文范例
  • 中国电力建设集团网站群小果seo实战培训课程
  • 泰州快速建站模板百度一下首页百度一下
  • 电脑自己做网站可以吗百度搜索百度