获取当前时间?
如何在 VC++ CLI Visual Studio 2008 中获取当前时间,
How do you get the current time in VC++ CLI Visual Studio 2008,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 VC++ CLI Visual Studio 2008 中获取当前时间,
How do you get the current time in VC++ CLI Visual Studio 2008,
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
(
System::DateTime::UtcNow
是另一种选择)(
System::DateTime::UtcNow
is another alternative)您可以使用 .NET System.DateTime.Now 属性获取当前时间。然后,您可以使用标准 DateTime 成员 来获取特定的信息。
例如:
You can use the .NET System.DateTime.Now property to get the current time. You can then use the standard DateTime members to get at specific information.
For example:
使用 time.h 中的时间函数
定义和示例
Use the time function from time.h
definition and example
编辑:
误认为 CLI 是指命令行界面,而不是公共语言基础设施。继续走吧,这里没什么可看的。
这应该是相当跨平台的:
或者,如果您想要特定于 Windows 的方法:
来源。
EDIT:
Mistook CLI to mean command-line interface, rather than Common Language Infrastructure. Move along, nothing to see here.
This should be fairly cross-platform:
Alternatively, if you want a windows specific method:
Source.