• Go入门案列1:实现一个家庭收支记账系统


    项目来源:

    b站尚硅谷go教学

    使用

    通过Create方法来创建myFamilyAccount变量(创建时设置的name和pwd相当于默认密码) ,再直接调用该变量的

    MainMeau方法即可,可参照如下
    package main
    
    import(
    	_"fmt"
    	"go_code/chapter09/project02/myFamilyAccount"
    )
    
    func main(){
    	account := myFamilyAccount.Create("小红","123456")
    	account.MainMeau()	
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    代码:

    package myFamilyAccount
    import(
    	"fmt"
    	"time"
    
    )
    
    type myFamilyAccount struct{
    	balance float64//定义账户余额
    	money float64//定义收支金额
    	note string//定义每次收支说明
    	details string//完整的打印信息
    	name string //登录名
    	pwd string //登录密码
    	id int64
    }
    
    
    //工厂模式
    func Create(name string,pwd string)myFamilyAccount{
    	return myFamilyAccount{
    		balance : 10000,
    		details : "收支\t\t账户金额\t\t收支金额\t\t说 明",
    		name : name,
    		pwd : pwd,
    	}
    }
    
    //登录
    func (account *myFamilyAccount)login(){
    	username := ""
    	userpwd := ""
    	fmt.Print("请输入登录名:")
    	fmt.Scanln(&username)
    	fmt.Print("请输入登录密码:")
    	fmt.Scanln(&userpwd)
    	if username == (*account).name && userpwd == (*account).pwd{
    		(*account).id = time.Now().Unix()
    	} else {
    		(*account).id = -1
    	}
    	
    }
    
    
    //收入
    func (account *myFamilyAccount)showIn(){
    	fmt.Print("本次支出金额:")
    	fmt.Scanln(&(*account).money)
    	fmt.Print("本次支出说明:")
    	fmt.Scanln(&(*account).note)
    	(*account).balance += (*account).money
    	(*account).details += fmt.Sprintf("\n收入\t\t%v\t\t\t%v\t\t\t%v",(*account).balance,(*account).money,(*account).note)
    }
    
    //支出
    func (account *myFamilyAccount)showOut(){
    	//你可以加上自己对金额的判断
    	fmt.Print("本次支出金额:")
    	fmt.Scanln(&(*account).money)
    	fmt.Print("本次支出说明:")
    	fmt.Scanln(&(*account).note)
    	(*account).balance -= (*account).money
    	(*account).details += fmt.Sprintf("\n支出\t\t%v\t\t\t%v\t\t\t%v",(*account).balance,(*account).money,(*account).note)
    }
    
    //转账
    func (account *myFamilyAccount)transfer(){
    	fmt.Print("本次转出金额:")
    	fmt.Scanln(&(*account).money)
    	fmt.Print("本次转出说明:")
    	fmt.Scanln(&(*account).note)
    	(*account).balance -= (*account).money
    	(*account).details += fmt.Sprintf("\n转出\t\t%v\t\t\t%v\t\t\t%v",(*account).balance,(*account).money,(*account).note)
    
    }
    
    //打印信息
    func (account *myFamilyAccount)showDetails(){
    	fmt.Println("-------------------------------收支明细-------------------------------")
    	if (*account).balance == 10000 && (*account).note == ""{
    		fmt.Println("\n当前没有收支明细,来一笔吧!") 
    	} else {
    		fmt.Println((*account).details)
    	}
    }
    
    //程序退出
    func (account *myFamilyAccount)exit() bool {
    	flag := ""
    	loop := true
    	for {
    		fmt.Print("你确定要退出吗?y/n\t")
    		fmt.Scanln(&flag)
    		if flag == "y"{
    			break
    		}else if flag == "n"{
    			loop = false
    		} else {
    			continue
    		}
    		break
    	}
    	return loop
    }
    
    
    //主窗口
    func (account *myFamilyAccount) MainMeau(){
    	var mode int64
    	loop := false
    	for{
    		if (*account).id == 0 {
    			(*account).login()
    			if (*account).id < 0{
    				fmt.Println("登录名或密码错误,请重新尝试!")
    				(*account).id = 0
    				continue
    			}
    			fmt.Println("^_^欢迎来到尚尚家庭记账软件")
    		}
    		
    		fmt.Println()
    		//打印展示台信息
    		fmt.Println("---------------------------家庭收支记账软件---------------------------")
    		fmt.Println("                           1、收支明细")
    		fmt.Println("                           2、登记收入")
    		fmt.Println("                           3、登记支出")
    		fmt.Println("                           4、登记转出")
    		fmt.Println("                           5、退    出")
    		fmt.Print("请输入【1-5】:")
    		fmt.Scanln(&mode)
    		switch mode{
    		case 1:
    			account.showDetails() 
    		case 2:
    			account.showIn()
    		case 3:
    			account.showOut()
    		case 4:
    			account.transfer()
    		case 5:
    			loop = account.exit()
    
    		}
    		if loop {
    			break
    		}
    	}
    	fmt.Println("你退出了家庭记账软件的使用!")
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
  • 相关阅读:
    Kong(二)通过案例快速了解使用
    机器学习-(手推)线性回归3-正则化-岭回归(Ridge)-频率角度&贝叶斯角度
    济南 章丘 科目三 资料 收集
    Redis 数据类型 list 以及使用场景
    封装、继承、多态的概念
    Express-05
    SSM度假村管理系统开发mysql数据库web结构java编程计算机网页源码eclipse项目
    媒体发稿:为什么选择国内媒体推广一文带你领略其魅
    【Unity】升级版·Excel数据解析,自动创建对应C#类,自动创建ScriptableObject生成类,自动序列化Asset文件
    iOS开发Swift-9-SFSymbols,页面跳转,view屏幕比例,启动页-和风天气AppUI
  • 原文地址:https://blog.csdn.net/weixin_43495948/article/details/126306169