package utils
import "fmt"
type FamilyAccount struct {
//定义一个变量用保存用户输入
key string
//定义一个变量用于确定用户是否退出
choice string
//定义一个变量用于系统退出
loop bool
//定义一个变量是否判断是否收入和支出
flag bool
//定义一个变量用于用户登录名
name string
//定义一个变量用于用户登录密码
pws string
//定义账户余额
balance float64
//每次收支金额
money float64
//每次收支说明
note string
//收支详情
details string
}
//定义一个工厂模式,用于其它包调用
func NewFamilyAccount() *FamilyAccount {
account := FamilyAccount{
"",
"",
true,
false,
"",
"",
10000.0,
0.0,
"",
"收支\t账户余额\t\t收支金额\t\t说 明",
}
return &account
}
//用户登录
func (this *FamilyAccount) Land() {
//定义一个map
for {
fmt.Println("请输入用户名")
fmt.Scanln(&this.name)
if this.name != "老王" {
fmt.Println("你的用户名不正确,请重新数输入")
continue
}
fmt.Println("请输入密码")
fmt.Scanln(&this.pws)
if this.pws != "666666"{
fmt.Scanln("你的密码不正确,请重新数输入")
continue
}
this.MainMenu()
if this.loop == false {
return
}
}
}
//显示收支明细
func (this *FamilyAccount) ShowDetails(){
fmt.Println("----------当前收支明细----------")
if this.flag {
fmt.Println(this.details)
} else {
fmt.Println("当前没有任何收入")
}
}
//登记收入
func (this *FamilyAccount) Income(){
fmt.Println("本次收入金额:")
fmt.Scanln(&this.money)
//修改账户余额
this.balance += this.money
fmt.Println("本次收入说明:")
fmt.Scanln(&this.note)
//收入情况
this.details += fmt.Sprintf("\n收入\t%v\t\t%v\t\t\t%v",this.balance,this.money,this.note)
this.flag = true
}
//登记支出
func (this *FamilyAccount) Pay() {
fmt.Println("本次支出金额:")
fmt.Scanln(&this.money)
if this.money > this.balance{
fmt.Println("余额不足")
}
this.balance -= this.money
fmt.Println("本次支出说明")
fmt.Scanln(&this.note)
this.details += fmt.Sprintf("\n支出\t%v\t\t%v\t\t\t%v",this.balance,this.money,this.note)
this.flag = true
}
func (this *FamilyAccount) Exit() {
fmt.Println("你确定要退出吗? y/n")
for {
fmt.Scanln(&this.choice)
if this.choice == "y" || this.choice == "n" {
break
}else {
fmt.Println("请输入正确的选项")
}
}
if this.choice == "y" {
this.loop = false
fmt.Println("成功退出家庭收支记账软件")
}
}
//显示主菜单
func (this *FamilyAccount) MainMenu() {
for {
fmt.Println("\n-----------家庭收支记账软件----------")
fmt.Println(" 1 收支明细")
fmt.Println(" 2 登记收入")
fmt.Println(" 3 登记支出")
fmt.Println(" 4 退出软件")
fmt.Print("请选择(1-4):")
fmt.Scanln(&this.key)
switch this.key {
case "1":
this.ShowDetails()
case "2":
this.Income()
case "3":
this.Pay()
case "4":
this.Exit()
default:
fmt.Println("请输入正确的选项")
}
if this.loop == false {
return
}
}
}
package main
import "go_code/project01/family/utils"
func main() {
account := utils.NewFamilyAccount()
account.Land()
}