登录
首页 >  Golang >  Go教程

示例:客户信息管理系统

来源:云海天教程

时间:2022-12-24 18:46:58 295浏览 收藏

来到golang学习网的大家,相信都是编程学习爱好者,希望在这里学习Golang相关编程知识。下面本篇文章就来带大家聊聊《示例:客户信息管理系统》,介绍一下package,希望对大家的知识积累有所帮助,助力实战开发!

本节带领大家实现一个基于文本界面的客户关系管理软件,该软件可以实现对客户的插入、修改和删除,并且可以打印客户信息明细表。

软件由一下三个模块组成:


项目结构如下所示:


在 costumer.go 中,代码如下:

package modelimport ( "fmt")//声明一个Customer结构体,表示一个客户信息type Customer struct { Id int Name string Gender string Age int Phone string Email string}//使用工厂模式,返回一个Customer的实例func NewCustomer(id int, name string, gender string, age int, phone string, email string ) Customer { return Customer{ Id : id, Name : name, Gender : gender, Age : age, Phone : phone, Email : email, }}//第二种创建Customer实例方法,不带idfunc NewCustomer2(name string, gender string, age int, phone string, email string ) Customer { return Customer{ Name : name, Gender : gender, Age : age, Phone : phone, Email : email, }}//返回用户的信息,格式化的字符串func (this Customer) GetInfo() string { info := fmt.Sprintf("%v %v %v %v %v %v", this.Id, this.Name, this.Gender,this.Age, this.Phone, this.Email) return info }在 costumerService.go 中,代码如下:

package serviceimport ( "../model")//该CustomerService, 完成对Customer的操作,包括//增删改查type CustomerService struct { customers []model.Customer //声明一个字段,表示当前切片含有多少个客户 //该字段后面,还可以作为新客户的id+1 customerNum int}//编写一个方法,可以返回 *CustomerServicefunc NewCustomerService() *CustomerService { //为了能够看到有客户在切片中,我们初始化一个客户 customerService := &CustomerService{} customerService.customerNum = 1 customer := model.NewCustomer(1, "张三", "男", 20, "010-56253825", "zs@sohu.com") customerService.customers = append(customerService.customers, customer) return customerService}//返回客户切片func (this *CustomerService) List() []model.Customer { return this.customers}//添加客户到customers切片func (this *CustomerService) Add(customer model.Customer) bool { //我们确定一个分配id的规则,就是添加的顺序 this.customerNum++ customer.Id = this.customerNum this.customers = append(this.customers, customer) return true}//根据id删除客户(从切片中删除)func (this *CustomerService) Delete(id int) bool { index := this.FindById(id) //如果index == -1, 说明没有这个客户 if index == -1 { return false } //如何从切片中删除一个元素 this.customers = append(this.customers[:index], this.customers[index+1:]...) return true}//根据id查找客户在切片中对应下标,如果没有该客户,返回-1func (this *CustomerService) FindById(id int) int { index := -1 //遍历this.customers 切片 for i := 0; i 在 costumerView.go 中,代码如下:

package mainimport ( "fmt" "../model" "../service")type customerView struct { //定义必要字段 key string //接收用户输入... loop bool //表示是否循环的显示主菜单 //增加一个字段customerService customerService *service.CustomerService}//显示所有的客户信息func (this *customerView) list() { //首先,获取到当前所有的客户信息(在切片中) customers := this.customerService.List() //显示 fmt.Println("---------------------------客户列表---------------------------") fmt.Println("编号姓名性别年龄电话邮箱") for i := 0; i 执行结果如下所示:

D:codedemoview>go run customerView.go
-----------------客户信息管理软件-----------------
1 添 加 客 户
2 修 改 客 户
3 删 除 客 户
4 客 户 列 表
5 退 出
请选择(1-5):1
---------------------添加客户---------------------
姓名:李四
性别:男
年龄:22
电话:15611112222
邮箱:lisi@qq.com
---------------------添加完成---------------------
-----------------客户信息管理软件-----------------
1 添 加 客 户
2 修 改 客 户
3 删 除 客 户
4 客 户 列 表
5 退 出
请选择(1-5):4
---------------------------客户列表---------------------------
编号 姓名 性别 年龄 电话 邮箱
1 张三 男 20 010-56253825 zs@sohu.com
2 李四 男 22 15611112222 lisi@qq.com

-------------------------客户列表完成-------------------------

-----------------客户信息管理软件-----------------
1 添 加 客 户
2 修 改 客 户
3 删 除 客 户
4 客 户 列 表
5 退 出
请选择(1-5):

文中关于golang的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《示例:客户信息管理系统》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:云海天教程 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表