浅析Go语言编程当中映射和方法的基本使用

作者:goldensun 时间:2024-04-28 09:13:16 

映射
Go编程提供的一个重要的数据类型就是映射,唯一映射一个键到一个值。一个键要使用在以后检索值的对象。给定的键和值,可以在一个Map对象存储的值。值存储后,您可以使用它的键检索。

定义映射
必须使用make函数来创建一个映射。

/* declare a variable, by default map will be nil*/
var map_variable map[key_data_type]value_data_type

/* define the map as nil map can not be assigned any value*/
map_variable = make(map[key_data_type]value_data_type)


例子
下面的例子说明创建和映射的使用。


package main

import "fmt"

func main {
   var coutryCapitalMap map[string]string
   /* create a map*/
   coutryCapitalMap = make(map[string]string)
  
   /* insert key-value pairs in the map*/
   countryCapitalMap["France"] = "Paris"
   countryCapitalMap["Italy"] = "Rome"
   countryCapitalMap["Japan"] = "Tokyo"
   countryCapitalMap["India"] = "New Delhi"
  
   /* print map using keys*/
   for country := range countryCapitalMap {
      fmt.Println("Capital of",country,"is",countryCapitalMap[country])
   }
  
   /* test if entry is present in the map or not*/
   captial, ok := countryCapitalMap["United States"]
   /* if ok is true, entry is present otherwise entry is absent*/
   if(ok){
      fmt.Println("Capital of United States is", capital) 
   }else {
      fmt.Println("Capital of United States is not present")
   }
}


让我们编译和运行上面的程序,这将产生以下结果:


Capital of India is New Delhi
Capital of France is Paris
Capital of Italy is Rome
Capital of Japan is Tokyo
Capital of United States is not present

delete() 函数
delete()函数是用于从映射中删除一个项目。映射和相应的键将被删除。下面是一个例子:


package main

import "fmt"

func main {  
   /* create a map*/
   coutryCapitalMap := map[string] string {"France":"Paris","Italy":"Rome","Japan":"Tokyo","India":"New Delhi"}
  
   fmt.Println("Original map")  
  
   /* print map */
   for country := range countryCapitalMap {
      fmt.Println("Capital of",country,"is",countryCapitalMap[country])
   }
  
   /* delete an entry */
   delete(countryCapitalMap,"France");
   fmt.Println("Entry for France is deleted") 
  
   fmt.Println("Updated map")  
  
   /* print map */
   for country := range countryCapitalMap {
      fmt.Println("Capital of",country,"is",countryCapitalMap[country])
   }
}


让我们编译和运行上面的程序,这将产生以下结果:


Original Map
Capital of France is Paris
Capital of Italy is Rome
Capital of Japan is Tokyo
Capital of India is New Delhi
Entry for France is deleted
Updated Map
Capital of India is New Delhi
Capital of Italy is Rome
Capital of Japan is Tokyo

方法
Go编程语言支持特殊类型的函数调用的方法。在方法声明的语法中,“ * ”的存在是为了表示容器中的函数。该 * 可用于通过调用函数“.”运算符。下面是一个例子:

语法


func (variable_name variable_data_type) function_name() [return_type]{
   /* function body*/
}
 package main

import (
   "fmt"
   "math"
)

/* define a circle */
type Circle strut {
   x,y,radius float64
}

/* define a method for circle */
func(circle Circle) area() float64 {
   return math.Pi * circle.radius * circle.radius
}

func main(){
   circle := Circle(x:0, y:0, radius:5)
   fmt.Printf("Circle area: %f", circle.area())
}


当上述代码被编译和执行时,它产生了以下结果:


Circle area: 78.539816
标签:Go
0
投稿

猜你喜欢

  • Python解决pip install时出现的Could not fetch URL问题

    2023-08-01 14:24:45
  • scrapy处理python爬虫调度详解

    2021-09-10 11:30:00
  • Python中dumps与dump及loads与load的区别

    2021-10-01 09:13:20
  • Sql学习第一天——SQL 练习题(建表/sql语句)

    2024-01-22 05:44:39
  • Java正则表达式之Pattern类实例详解

    2023-11-07 10:13:33
  • python 30行代码实现蚂蚁森林自动偷能量

    2021-07-20 03:04:28
  • JS变量及其作用域

    2024-04-10 10:40:19
  • Python接入MySQL实现增删改查的实战记录

    2023-08-23 04:52:50
  • Python实现感知机(PLA)算法

    2023-11-19 22:07:53
  • Oracle使用PL/SQL操作COM对象

    2010-07-21 12:56:00
  • JavaScript Math 对象常用方法总结

    2024-06-05 09:33:56
  • 详细介绍Python进度条tqdm的使用

    2022-12-13 19:45:08
  • 用javascript实现的仿Flash广告图片轮换效果

    2024-04-19 09:59:29
  • 无法在Web服务器上启动调试。未将项目配置为进行调试

    2024-03-21 03:11:13
  • Django-celery-beat动态添加周期性任务实现过程解析

    2021-07-29 13:09:49
  • CSS制作圆角导航的另一思路

    2008-11-06 11:39:00
  • python数据化运营的重要意义

    2021-05-05 21:02:27
  • 使用Python的Scrapy框架编写web爬虫的简单示例

    2023-08-03 12:37:50
  • 使用 Vue cli 3.0 构建自定义组件库的方法

    2024-05-05 09:07:50
  • JS实现密码框根据焦点的获取与失去控制文字的消失与显示效果

    2024-04-10 10:50:20
  • asp之家 网络编程 m.aspxhome.com