从 google go 中重命名的类型进行转换

发布于 2024-11-12 20:21:04 字数 335 浏览 2 评论 0原文

我正在尝试编写将 appengine/datastore.Time 类型转换为字符串的合适方法。 该类型被声明为type Time int64 但是当我尝试将其用作 int64 值时:

localTime := time.SecondsToLocalTime(t/1000)

我收到错误消息

不能使用 t / 1000(类型 datastore.Time) 作为 int64 类型 函数参数

从 int64 到 Time 类型变量的赋值成功,但我如何将其转换回来?

I'm trying to write suitable method of converting appengine/datastore.Time type to string.
This type is declared as type Time int64
But when i'm trying to use it as int64 value:

localTime := time.SecondsToLocalTime(t/1000)

I'm receiving error message

cannot use t / 1000 (type
datastore.Time) as type int64 in
function argument

Assignment from int64 to Time typed variable is successfull, but how can i cast it back?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半岛未凉 2024-11-19 20:21:04

请参阅

time.SecondsToLocalTime(int64(t)/1000)

有关转换的文档中的更多内容

do it like

time.SecondsToLocalTime(int64(t)/1000)

See more in the documentation about Conversions

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文