この記事では、Go言語を使ってシンプルでわかりやすい注文システムを実装する方法を紹介します。
1. 需要分析
シンプルでわかりやすい注文システムが必要であり、少なくとも次の機能を実装する必要があります:
製品価格 | |
---|---|
10 元 | |
20 元 |
2. コードの実装
製品構造の作成type product struct { name string price int } var products = []product{ {"商品1", 10}, {"商品2", 20}, }
func showProducts() { fmt.Println("== 商品列表 ==") for _, p := range products { fmt.Printf("%s %d元\n", p.name, p.price) } fmt.Println("================") }
type cart struct { items map[string]int } func newCart() *cart { return &cart{items: make(map[string]int)} } func (c *cart) addItem(name string, qty int) { c.items[name] += qty } func (c *cart) clear() { c.items = make(map[string]int) } func (c *cart) total() int { total := 0 for name, qty := range c.items { for _, p := range products { if p.name == name { total += p.price * qty break } } } return total } func (c *cart) show() { if len(c.items) == 0 { fmt.Println("购物车为空") return } fmt.Println("== 购物车 ==") for name, qty := range c.items { fmt.Printf("%s × %d\n", name, qty) } fmt.Printf("总计 %d元\n", c.total()) fmt.Println("============") }
func checkout(c *cart) { if len(c.items) == 0 { fmt.Println("购物车为空") return } // 生成订单 order := make(map[string]int) for name, qty := range c.items { order[name] = qty } // 清空购物车 c.clear() fmt.Println("== 订单详情 ==") for name, qty := range order { for _, p := range products { if p.name == name { fmt.Printf("%s × %d\n", name, qty) fmt.Printf("单价 %d元,总价 %d元\n", p.price, p.price*qty) break } } } fmt.Printf("总计 %d元\n", c.total()) fmt.Println("============") }
func interactive() { scanner := bufio.NewScanner(os.Stdin) c := newCart() for { showProducts() c.show() fmt.Print("请选择商品(输入商品编号):") scanner.Scan() id := scanner.Text() if id == "q" { break } var p product for _, p = range products { if p.name == id { break } } if p.price == 0 { fmt.Printf("商品 %s 不存在\n", id) continue } fmt.Print("请输入数量:") scanner.Scan() qtyStr := scanner.Text() qty, err := strconv.Atoi(qtyStr) if err != nil { fmt.Println("输入的数量无效") continue } c.addItem(p.name, qty) } checkout(c) }
3. 完全なコード
完全なコードは次のとおりです:
package main import ( "bufio" "fmt" "os" "strconv" ) type product struct { name string price int } var products = []product{ {"商品1", 10}, {"商品2", 20}, } type cart struct { items map[string]int } func newCart() *cart { return &cart{items: make(map[string]int)} } func (c *cart) addItem(name string, qty int) { c.items[name] += qty } func (c *cart) clear() { c.items = make(map[string]int) } func (c *cart) total() int { total := 0 for name, qty := range c.items { for _, p := range products { if p.name == name { total += p.price * qty break } } } return total } func (c *cart) show() { if len(c.items) == 0 { fmt.Println("购物车为空") return } fmt.Println("== 购物车 ==") for name, qty := range c.items { fmt.Printf("%s × %d\n", name, qty) } fmt.Printf("总计 %d元\n", c.total()) fmt.Println("============") } func showProducts() { fmt.Println("== 商品列表 ==") for _, p := range products { fmt.Printf("%s %d元\n", p.name, p.price) } fmt.Println("================") } func checkout(c *cart) { if len(c.items) == 0 { fmt.Println("购物车为空") return } // 生成订单 order := make(map[string]int) for name, qty := range c.items { order[name] = qty } // 清空购物车 c.clear() fmt.Println("== 订单详情 ==") for name, qty := range order { for _, p := range products { if p.name == name { fmt.Printf("%s × %d\n", name, qty) fmt.Printf("单价 %d元,总价 %d元\n", p.price, p.price*qty) break } } } fmt.Printf("总计 %d元\n", c.total()) fmt.Println("============") } func interactive() { scanner := bufio.NewScanner(os.Stdin) c := newCart() for { showProducts() c.show() fmt.Print("请选择商品(输入商品编号):") scanner.Scan() id := scanner.Text() if id == "q" { break } var p product for _, p = range products { if p.name == id { break } } if p.price == 0 { fmt.Printf("商品 %s 不存在\n", id) continue } fmt.Print("请输入数量:") scanner.Scan() qtyStr := scanner.Text() qty, err := strconv.Atoi(qtyStr) if err != nil { fmt.Println("输入的数量无效") continue } c.addItem(p.name, qty) } checkout(c) } func main() { interactive() }
4. まとめ
この記事では、Go 言語を使用してシンプルでわかりやすい注文システムを実装する方法を簡単に紹介します。商品表示、ショッピングカート機能、注文生成・表示などの機能を実装することで、一定の機能を備えた便利なモールシステムを実現しています。製品開発をより適切に完了できるように、開発前にニーズと目標を十分に理解する必要があると同時に、Go 言語の効率性とシンプルさにより、信頼性が高く効率的な開発ツールとサポートも提供されます。
以上がGo言語を使用して注文システムを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。