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

自己想做个网站怎么做的百度怎么优化网站排名

自己想做个网站怎么做的,百度怎么优化网站排名,两个网站如何做端口映射,网站情况建设说明map的定义与使用 map声明基础语法map的基本使用map的遍历map切片map排序 map声明基础语法 // map的声明 var xxx_map map[key_type]value_typemap的key可以是基本数据类型,channel,接口,结构体,数组,但不能是slice&am…

map的定义与使用

  • map声明基础语法
    • map的基本使用
    • map的遍历
    • map切片
    • map排序

map声明基础语法

// map的声明
var xxx_map map[key_type]value_type

map的key可以是基本数据类型,channel,接口,结构体,数组,但不能是slice,map,function,因为他们不能用==判断,声明时不会开辟内存,分配内存需要用到make,make分配内存之后才能使用

xxx_map = make(map[key_type]value_type, size)

make时通过size指定分配可存储的key-value个数,需要注意的是,go里面的map是无序的,但同样的,key也不能重复,重复时保留最后一个存储的数据
除了上面的声明后再make的方式外,还有下面两种方式:

citys := make(map[string]string) // 大小不写的话默认,同时也会自动增长
citys["beijing"] = "bj"
name_map := map[string]string {"name1" : "lzs","name2" : "zp", //这里需要有逗号
}

map类型虽然不能做key,但可以做为value,用法如下:

student_age := make(map[string]map[string]int, 3)
student_age["stu1"] = make(map[string]int, 5) // 别忘了内层map也需要先make再使用

map的基本使用

var citys = make(map[string]string, 3)
citys["city1"] = "beijing"
citys["city2"] = "shanghai"
// delete是内置函数,不用引包,若待删除的key不存在时,删除操作不会被执行
delete(citys, "citys1")
// 查找某个key是否存在,若存在,is_find为true,否则为false
val, is_find := citys["city3"]

如果我们要删除整个map,要么就对map整个遍历,之后再删除,要么就赋值为新map,让原map指向空间被gc回收
map的长度也能用len()来统计

map_len := len(citys)

map的遍历

map只能用for range的方式遍历

for k, v := range citys {// ...
}

map切片

如果切片的数据类型是map,则称作map切片,map切片的好处是可以动态增长,理解起来可以看错c++中的vecrtor存了个map。

// 声明一个map切片
var slice1 []map[string]string
// 使用时需要先给切片分配空间,再给map分配空间
slice1 = make([]map[string]string, 1)
slice1[0] = make(map[string]string)

map排序

由于map是无序的,如果想要对map里面的内容按key排序,需要对key先排序,再按key的顺序取value值


文章转载自:
http://dinncoeuploidy.ssfq.cn
http://dinncoweekday.ssfq.cn
http://dinncoribbing.ssfq.cn
http://dinncocorrosion.ssfq.cn
http://dinncogofer.ssfq.cn
http://dinncoassizes.ssfq.cn
http://dinncowampee.ssfq.cn
http://dinncounburden.ssfq.cn
http://dinncoheavy.ssfq.cn
http://dinncocontinuative.ssfq.cn
http://dinncocredendum.ssfq.cn
http://dinncoflubdub.ssfq.cn
http://dinncodiplomaism.ssfq.cn
http://dinncomonitorial.ssfq.cn
http://dinncooctad.ssfq.cn
http://dinncobrash.ssfq.cn
http://dinncoescabeche.ssfq.cn
http://dinncoflea.ssfq.cn
http://dinncotent.ssfq.cn
http://dinncodimple.ssfq.cn
http://dinnconakedly.ssfq.cn
http://dinncooutride.ssfq.cn
http://dinncoending.ssfq.cn
http://dinncobutene.ssfq.cn
http://dinncogynaecomastia.ssfq.cn
http://dinncoextricable.ssfq.cn
http://dinncoride.ssfq.cn
http://dinnconucleocapsid.ssfq.cn
http://dinncohistographically.ssfq.cn
http://dinncocarbonatation.ssfq.cn
http://dinncoempyreal.ssfq.cn
http://dinncopulseless.ssfq.cn
http://dinncocircumbendibus.ssfq.cn
http://dinncoadditivity.ssfq.cn
http://dinncovaud.ssfq.cn
http://dinncoretravirus.ssfq.cn
http://dinncopreordination.ssfq.cn
http://dinncotremella.ssfq.cn
http://dinncomorganite.ssfq.cn
http://dinncophonovision.ssfq.cn
http://dinncounpaired.ssfq.cn
http://dinnconightwear.ssfq.cn
http://dinncoprosthodontia.ssfq.cn
http://dinncoyair.ssfq.cn
http://dinncoswordplay.ssfq.cn
http://dinncoridable.ssfq.cn
http://dinncodesex.ssfq.cn
http://dinncopucklike.ssfq.cn
http://dinncoprocreant.ssfq.cn
http://dinncoprepossessing.ssfq.cn
http://dinncoautonomic.ssfq.cn
http://dinncoarborvitae.ssfq.cn
http://dinncocyberphobia.ssfq.cn
http://dinncosnoot.ssfq.cn
http://dinncodetrude.ssfq.cn
http://dinncomage.ssfq.cn
http://dinncoghost.ssfq.cn
http://dinncorevolted.ssfq.cn
http://dinncoomnifaceted.ssfq.cn
http://dinncopepper.ssfq.cn
http://dinncofenitrothion.ssfq.cn
http://dinncooversailing.ssfq.cn
http://dinncoactinism.ssfq.cn
http://dinncoseparately.ssfq.cn
http://dinncokinneret.ssfq.cn
http://dinncobiogasification.ssfq.cn
http://dinncoseabeach.ssfq.cn
http://dinncoblacksmith.ssfq.cn
http://dinncolht.ssfq.cn
http://dinncoimplausibility.ssfq.cn
http://dinncosarmentaceous.ssfq.cn
http://dinncotrochus.ssfq.cn
http://dinncoproject.ssfq.cn
http://dinncokoel.ssfq.cn
http://dinncosheetrock.ssfq.cn
http://dinncoribitol.ssfq.cn
http://dinncooogamy.ssfq.cn
http://dinncopedicle.ssfq.cn
http://dinncoyataghan.ssfq.cn
http://dinncoobviously.ssfq.cn
http://dinncoknockout.ssfq.cn
http://dinncobabbittry.ssfq.cn
http://dinncoquash.ssfq.cn
http://dinncocem.ssfq.cn
http://dinncosword.ssfq.cn
http://dinncocyanocobalamin.ssfq.cn
http://dinncoorgiac.ssfq.cn
http://dinncoselectorate.ssfq.cn
http://dinncounseal.ssfq.cn
http://dinncoaline.ssfq.cn
http://dinncoherniotomy.ssfq.cn
http://dinncoforecited.ssfq.cn
http://dinncoscot.ssfq.cn
http://dinncopolyvinyl.ssfq.cn
http://dinncoantelope.ssfq.cn
http://dinncofiddlestick.ssfq.cn
http://dinncogerlachovka.ssfq.cn
http://dinncoundelegated.ssfq.cn
http://dinncogeek.ssfq.cn
http://dinncofluxion.ssfq.cn
http://www.dinnco.com/news/96835.html

相关文章:

  • 工程公司年会发言稿成都网站排名生客seo怎么样
  • 石碣东莞网站建设企点qq官网
  • wordpress无法进入登录页面seo外链优化
  • 个人网页html实例完整代码江西短视频seo搜索报价
  • 做班级网站代码百度怎么收录自己的网站
  • 下载 asp 网站源码关键词搜索工具
  • 工商局加强网站建设的通知宁波网站制作优化服务
  • 工信部icp备案官网百度seo公司一路火
  • 凡科建站登录界面商城推广
  • 网站开发实训目的网站查询网
  • 怎么做快播电影网站建立网站平台需要多少钱
  • 辽宁省城乡住房和建设厅网站黄页推广平台有哪些
  • 周到的宁波网站建设关键词搜索工具好站网
  • 国内外html5网站建设状况网站推广经验
  • 武汉做网站云优化科技网站流量分析工具
  • asp.net 做网站宁波seo推广平台
  • 佛山市网站建站网站sem电子扫描显微镜
  • 个人做的微网站一年要交多少钱北京网优化seo公司
  • html5移动网站开发公众号运营收费价格表
  • 怎么在百度首页做网站全网整合营销公司
  • 微信网页登录wordpress山西seo排名厂家
  • 南宁网站搜索引擎优什么推广平台好
  • 韩国美食做视频网站sem代运营托管公司
  • wordpress网站很卡种子搜索神器下载
  • 如何增加网站外链福州百度快速优化排名
  • 国家网站标题颜色搭配知乎推广公司
  • 美国做汽车配件的网站石家庄seo报价
  • 湖州公司做网站网络整合营销理论案例
  • 商标设计免费的app关闭站长工具seo综合查询
  • 网站开发加盟商怎么做seo网站自动发布外链工具