gpt4 book ai didi

web-applications - 将常量文件加载到应用程序-Golang

转载 作者:IT王子 更新时间:2023-10-29 00:58:48 25 4
gpt4 key购买 nike

我的主 pkg 中有一个常量文件:

package main

const (
FIRST_NAME = "FIRST_NAME"
LAST_NAME = "LAST_NAME"
)

我希望能够说出类似first_name := constants.FIRSTNAME

知道如何告诉我的应用程序“嘿,加载我的常量文件并让我使用常量访问它。”?

最佳答案

如果你真的想让它们成为常量,你可以把它做成一个单独的包,叫做“constants”。

或者,由于您的常量不是真正的常量(您使用的是 var,而不是 const),您可以创建一个 constants结构与你想要的值(value)。

type Constants struct {
FirstName string
LastName string
}

关于web-applications - 将常量文件加载到应用程序-Golang,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37558259/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com