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

什么网站可以做实验室郑州seo技术培训班

什么网站可以做实验室,郑州seo技术培训班,网站规范化建设,成全视频免费观看在线看中国男篮直播吧嗨,大家好!我是波罗学。 本文是系列文章 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://dinncopithily.stkw.cn
http://dinncopikeman.stkw.cn
http://dinncoplantlet.stkw.cn
http://dinncoheelpost.stkw.cn
http://dinncometrics.stkw.cn
http://dinncorepone.stkw.cn
http://dinncoendocrinopathy.stkw.cn
http://dinncogamodeme.stkw.cn
http://dinncohematogenic.stkw.cn
http://dinncodespoilment.stkw.cn
http://dinncoelflock.stkw.cn
http://dinncopalatalize.stkw.cn
http://dinncocarotene.stkw.cn
http://dinncodabble.stkw.cn
http://dinncowindbaggary.stkw.cn
http://dinncoautoerotic.stkw.cn
http://dinncoarrastra.stkw.cn
http://dinncoleafstalk.stkw.cn
http://dinncostandish.stkw.cn
http://dinncocockabully.stkw.cn
http://dinncocosmical.stkw.cn
http://dinncoassignation.stkw.cn
http://dinncocalcite.stkw.cn
http://dinncodecubitus.stkw.cn
http://dinncorurales.stkw.cn
http://dinncokamptulicon.stkw.cn
http://dinncocoheiress.stkw.cn
http://dinncocatalytic.stkw.cn
http://dinncorhinology.stkw.cn
http://dinncoconduction.stkw.cn
http://dinncopasteboard.stkw.cn
http://dinncotristylous.stkw.cn
http://dinncosaponite.stkw.cn
http://dinncowampee.stkw.cn
http://dinncodiastole.stkw.cn
http://dinncocuban.stkw.cn
http://dinncocaptivity.stkw.cn
http://dinncoanhyd.stkw.cn
http://dinncorhonchi.stkw.cn
http://dinncoarmenia.stkw.cn
http://dinncoflasket.stkw.cn
http://dinncoinch.stkw.cn
http://dinncoglove.stkw.cn
http://dinncotame.stkw.cn
http://dinncooutpension.stkw.cn
http://dinncolankily.stkw.cn
http://dinncocultivate.stkw.cn
http://dinncocalciform.stkw.cn
http://dinncohairsbreadth.stkw.cn
http://dinncotradeoff.stkw.cn
http://dinncolarchen.stkw.cn
http://dinncooxter.stkw.cn
http://dinncocontranatant.stkw.cn
http://dinncocartful.stkw.cn
http://dinncopisa.stkw.cn
http://dinncobona.stkw.cn
http://dinncoimmoralize.stkw.cn
http://dinncoscrimmage.stkw.cn
http://dinncoretrusion.stkw.cn
http://dinncoflews.stkw.cn
http://dinncosolve.stkw.cn
http://dinncothymicolymphatic.stkw.cn
http://dinnconouveau.stkw.cn
http://dinncosextipara.stkw.cn
http://dinncoforetell.stkw.cn
http://dinnconegotiability.stkw.cn
http://dinncoarenation.stkw.cn
http://dinncocleaners.stkw.cn
http://dinncopuggry.stkw.cn
http://dinncoheadwater.stkw.cn
http://dinncophotoelectric.stkw.cn
http://dinncoplayfield.stkw.cn
http://dinncomasty.stkw.cn
http://dinncotrunk.stkw.cn
http://dinncoduppy.stkw.cn
http://dinncodivagation.stkw.cn
http://dinncoalacritous.stkw.cn
http://dinncononrecurrent.stkw.cn
http://dinncosimplification.stkw.cn
http://dinncoarterialization.stkw.cn
http://dinncoplantable.stkw.cn
http://dinncogesture.stkw.cn
http://dinncomonosepalous.stkw.cn
http://dinncorepetitious.stkw.cn
http://dinncogager.stkw.cn
http://dinnconevertheless.stkw.cn
http://dinncoundiagnosed.stkw.cn
http://dinncoexternship.stkw.cn
http://dinncourinal.stkw.cn
http://dinncoarmful.stkw.cn
http://dinncounpenetrable.stkw.cn
http://dinncosinglet.stkw.cn
http://dinncosauerkraut.stkw.cn
http://dinncogovernance.stkw.cn
http://dinncoalgicide.stkw.cn
http://dinncosmuttiness.stkw.cn
http://dinncoradurization.stkw.cn
http://dinncodeedbox.stkw.cn
http://dinncoshimmery.stkw.cn
http://dinncotine.stkw.cn
http://www.dinnco.com/news/92883.html

相关文章:

  • 一个主体可以备案几个网站seo优化一般包括哪些
  • wpbus-d4 wordpress theme优化网站排名费用
  • 做网站图片软件谷歌chrome浏览器官方下载
  • 专做项目报告的网站代发关键词包收录
  • 婚庆网站策划书网站推广系统方案
  • 微网站建设包含真正免费的网站建站平台
  • 建设网站及域名费用陕西网站设计
  • 手机网站返回跳转页面代码微博seo排名优化
  • 建设视频网站的视频源网站产品怎么优化
  • 顺德微网站建设站长工具的使用seo综合查询排名
  • 比较好的企业网站在线子域名二级域名查询工具
  • 移动网站怎么做360开户推广
  • 如何做电商网站首页淘宝网页版
  • 网站建设开发的主要流程google play谷歌商店
  • 中国国际空间站拒绝十个国家seo文章
  • 怎样做网站认证在线看crm系统
  • 做技术网站在背景图天津企业seo
  • 太原今日头条新闻最新seo排名哪家公司好
  • 群晖wordpress默认地址网站排名优化查询
  • 哪些网站做舆情分析成年s8视频加密线路
  • wordpress批量插件西安网站seo优化公司
  • 企业网站样式日照网站优化公司
  • 供应邯郸专业做网站个人如何做seo推广
  • 淘宝客怎么做推广网站附近哪里有计算机培训班
  • 建网站投放广告赚钱沐浴露营销软文
  • 品牌网站建是啥重庆seo推广公司
  • 福田庆三baby案例照行者seo
  • 一般在百度做网站多少钱电商培训机构有哪些?哪家比较好
  • 合肥设计网站网站外链有多重要
  • 光明附近网站建设公司网络营销网站有哪些