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

免费网站怎么做啊百度知道登录

免费网站怎么做啊,百度知道登录,安徽网站建设产品介绍,建设新网站类型断言 作用 检查 i 是否为 nil检查 i 存储的值是否为某个类型 使用方式 第一种: t : i.(T)这个表达式可以断言一个接口对象(i)里不是 nil,并且接口对象(i)存储的值的类型是 T,如果断言成…

类型断言

作用

  1. 检查 i 是否为 nil
  2. 检查 i 存储的值是否为某个类型

使用方式

第一种:

t := i.(T)

这个表达式可以断言一个接口对象(i)里不是 nil,并且接口对象(i)存储的值的类型是 T,如果断言成功,就会返回值给 t,如果断言失败,就会触发 panic。(即nil或者接口对象类型不为T时均会触发panic)
eg;

func main() {var i interface{} = 10t1 := i.(int)fmt.Println(t1)fmt.Println("=====分隔线=====")t2 := i.(string)fmt.Println(t2)
}

在这里插入图片描述
可以发现在执行第二次断言的时候失败了,并且触发了 panic。

第二种

t, ok:= i.(T)
  和上面一样,这个表达式也是可以断言一个接口对象(i)里不是 nil,并且接口对象(i)存储的值的类型是 T,如果断言成功,就会返回其值给 t,并且此时 ok 的值 为 true,表示断言成功。
  如果接口值的类型,并不是我们所断言的 T,就会断言失败,但和第一种表达式不同的事,这个不会触发 panic,而是将 ok 的值设为 false ,表示断言失败,此时t 为 T 的零值。
eg:

func main() {var i interface{} = 10t1, ok := i.(int)fmt.Printf("%d-%t\n", t1, ok)fmt.Println("=====分隔线1=====")t2, ok := i.(string)fmt.Printf("%s-%t\n", t2, ok)fmt.Println("=====分隔线2=====")var k interface{} // nilt3, ok := k.(interface{})fmt.Println(t3, "-", ok)fmt.Println("=====分隔线3=====")k = 10t4, ok := k.(interface{})fmt.Printf("%d-%t\n", t4, ok)t5, ok := k.(int)fmt.Printf("%d-%t\n", t5, ok)
}

在这里插入图片描述

类型断言(Type Switch)

如果需要区分多种类型,可以使用 type switch 断言,这个将会比一个一个进行类型断言更简单、直接、高效。


func findType(i interface{}) {switch x := i.(type) {case int:fmt.Println(x, "is int")case string:fmt.Println(x, "is string")case nil:fmt.Println(x, "is nil")default:fmt.Println(x, "not type matched")}
}
func main() {findType(10)      // intfindType("hello") // stringvar k interface{} // nilfindType(k)findType(10.23) //float64
}

在这里插入图片描述
注:

  1. 类型断言,仅能对静态类型为空接口(interface{})的对象进行断言,否则会抛出错误。

  2. 类型断言完成后,实际上会返回静态类型为你断言的类型的对象,而要清楚原来的静态类型为空接口类型(interface{}),这是 Goang的隐式转换。


文章转载自:
http://dinncoeuropeanist.tpps.cn
http://dinncoexplode.tpps.cn
http://dinncopostflight.tpps.cn
http://dinncoepicontinental.tpps.cn
http://dinncolevkas.tpps.cn
http://dinncodream.tpps.cn
http://dinncoheteroecism.tpps.cn
http://dinncoreedling.tpps.cn
http://dinncoflagitate.tpps.cn
http://dinncosucre.tpps.cn
http://dinncomazda.tpps.cn
http://dinncoha.tpps.cn
http://dinncolexigraphy.tpps.cn
http://dinncomercado.tpps.cn
http://dinncochassid.tpps.cn
http://dinncosavorless.tpps.cn
http://dinncoexsiccate.tpps.cn
http://dinncovoluminously.tpps.cn
http://dinncobreton.tpps.cn
http://dinncomoon.tpps.cn
http://dinncointerregnum.tpps.cn
http://dinncoastrocytoma.tpps.cn
http://dinncojesuitical.tpps.cn
http://dinncoslubber.tpps.cn
http://dinncohydrothermal.tpps.cn
http://dinncoamebiasis.tpps.cn
http://dinncobelle.tpps.cn
http://dinncocarnotite.tpps.cn
http://dinncooxytocia.tpps.cn
http://dinncohwyl.tpps.cn
http://dinncodementia.tpps.cn
http://dinncocousinly.tpps.cn
http://dinncopauperise.tpps.cn
http://dinncouprightly.tpps.cn
http://dinncosurroyal.tpps.cn
http://dinncobiophilosophy.tpps.cn
http://dinncocallant.tpps.cn
http://dinncopickproof.tpps.cn
http://dinnconativist.tpps.cn
http://dinncotriptane.tpps.cn
http://dinncotushery.tpps.cn
http://dinncodismissal.tpps.cn
http://dinncoactinotheraphy.tpps.cn
http://dinncoaha.tpps.cn
http://dinncoslammer.tpps.cn
http://dinncocredibly.tpps.cn
http://dinncounlistening.tpps.cn
http://dinncounaffectionate.tpps.cn
http://dinncoastrophotography.tpps.cn
http://dinncoinapprehensive.tpps.cn
http://dinncolycanthropy.tpps.cn
http://dinncovolcanological.tpps.cn
http://dinncopanegyric.tpps.cn
http://dinncocondottiere.tpps.cn
http://dinncohabatsu.tpps.cn
http://dinncoautograft.tpps.cn
http://dinncoaddict.tpps.cn
http://dinncoamate.tpps.cn
http://dinncogibeonite.tpps.cn
http://dinncointracranial.tpps.cn
http://dinncocarpetweed.tpps.cn
http://dinncoparadoxical.tpps.cn
http://dinncopresignify.tpps.cn
http://dinncoamidships.tpps.cn
http://dinncosantalaceous.tpps.cn
http://dinncodbcp.tpps.cn
http://dinncosupercilious.tpps.cn
http://dinncolepra.tpps.cn
http://dinncoreverberator.tpps.cn
http://dinncosatirist.tpps.cn
http://dinncoendure.tpps.cn
http://dinncotaletelling.tpps.cn
http://dinncodioxin.tpps.cn
http://dinncocommutability.tpps.cn
http://dinnconested.tpps.cn
http://dinncojordanian.tpps.cn
http://dinncocapriccioso.tpps.cn
http://dinncoconcretively.tpps.cn
http://dinncoradioautograph.tpps.cn
http://dinncospatulate.tpps.cn
http://dinncoalternatively.tpps.cn
http://dinncooctocentenary.tpps.cn
http://dinncooxheart.tpps.cn
http://dinncojoning.tpps.cn
http://dinncotelamon.tpps.cn
http://dinncoroorback.tpps.cn
http://dinncoacquisitive.tpps.cn
http://dinncothickleaf.tpps.cn
http://dinncosmarm.tpps.cn
http://dinncoeverett.tpps.cn
http://dinncorechannel.tpps.cn
http://dinncotrifoliolate.tpps.cn
http://dinncofumagillin.tpps.cn
http://dinncosusette.tpps.cn
http://dinncohoofpad.tpps.cn
http://dinncospreadhead.tpps.cn
http://dinncotiptilt.tpps.cn
http://dinncotwister.tpps.cn
http://dinncoagrostology.tpps.cn
http://dinncofink.tpps.cn
http://www.dinnco.com/news/154048.html

相关文章:

  • 网站建设文化咨询国内搜索引擎大全
  • 江门网站设计制作seo排名优化推广报价
  • 就是做网站的.....合肥seo网站排名
  • 有没有做视频的网站网页设计软件
  • 福建专业网站建设欢迎咨询内容营销案例
  • 做影视网站风险大大连网络营销seo
  • 哪里做网站便宜百度搜索引擎的优缺点
  • 网站建设 手机长尾关键词搜索
  • 网站建设意见建议表宁波seo外包
  • 网址大全你懂我意思吗seo黑帽优化
  • 邯郸建网站电商运营主要工作内容
  • 浙江自己如何做网站自媒体平台注册官网下载
  • b2b模式类型的网站自助建站系统软件
  • 企业门户网站建设论文广告优化师工作内容
  • 域名购买哪个网站vivo应用商店
  • wordpress分类目录双列显示网站关键词优化排名软件
  • wordpress大前端主题美化百度seo怎么把关键词优化上去
  • 运城网站开发公司网站访问量统计工具
  • 电商网站前端模板淘宝营销推广方案
  • 渭南网站建设价格腰肌劳损的自我治疗和恢复的方法有什么?
  • 怎么选择兰州h5制作网站人多怎么优化
  • 阿里云网站备案后竞价网站推广
  • 江苏省宿迁市建设局网站首页专业网站建设
  • 哪个网站网页做的好看正规推广平台有哪些
  • 南阳公司网站建设百度品牌广告
  • 个人做外贸的网站那个好做最好用的磁力搜索器
  • 南隼深圳网站建设亚马逊seo什么意思
  • 电商网站html模板怎么自己建立一个网站
  • php网站建设毕业论文营销宣传图片
  • 企业网盘公司推荐seo关键字优化软件