从 google go 中重命名的类型进行转换
我正在尝试编写将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅
有关转换的文档中的更多内容
do it like
See more in the documentation about Conversions