- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我试图在 C 中区分两个日期,但我收到这样的输出:
future date: 18-11-2013 22:8
current date: 18-11-2013 22:8
这是我的代码:
#include <stdio.h>
#include <time.h>
int main(int argc, char *argv[])
{
// 2 years ahead
time_t unixtime = time(NULL);
struct tm *future = localtime(&unixtime);
future->tm_year += 2;
// current time
time_t unixtime_now = time(NULL);
struct tm *current = localtime(&unixtime_now);
printf("future date: %d-%d-%d %d:%d\n", future->tm_mday, 1 + future->tm_mon, 1900 + future->tm_year, future->tm_hour, future->tm_min);
printf("current date: %d-%d-%d %d:%d\n", current->tm_mday, 1 + current->tm_mon, 1900 + current->tm_year, current->tm_hour, current->tm_min);
return 0;
}
最佳答案
localtime
的返回值是指向静态分配结构的指针,该结构可能会被进一步调用日期/时间函数覆盖。如果您想将指向的数据保留更长时间,您需要复制它,或使用其他函数,例如 localtime_r
。
The localtime() function converts the calendar time timep to broken-down time representation, expressed relative to the user's specified timezone. The function acts as if it called tzset(3) and sets the external variables tzname with information about the current timezone, timezone with the difference between Coordinated Universal Time (UTC) and local standard time in seconds, and daylight to a nonzero value if daylight savings time rules apply during some part of the year. The return value points to a statically allocated struct which might be overwritten by subsequent calls to any of the date and time functions. The localtime_r() function does the same, but stores the data in a user-supplied struct. It need not set tzname, timezone, and daylight.
关于C 时差,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20057990/
我正在尝试创建一个程序,该程序采用两个军事时间的差异并获取其时差。 示例: **上午到下午** 时间 1:0900 时间 2:1730 时差:8 小时 30 分钟 **下午到上午** 时间 1:120
我正在尝试计算两个时间字段之间的时间差异。由于这些字段只是没有日期的时间,因此我无法使用 timestampdiff,因此我使用 timediff() 或 subtime() 。唯一的问题是,当第二次
我试图简单地计算 5:30:00 - 2:30:00 的时差。显然这应该导致 3:00:00 但是当我在控制台中执行以下代码时 var a = new Date(0,0,0,5,30,0) var b
我试图在 C 中区分两个日期,但我收到这样的输出: future date: 18-11-2013 22:8 current date: 18-11-2013 22:8 这是我的代码: #includ
我正在尝试计算截至上午 00:00 的剩余分钟数。 DELIMITER // CREATE PROCEDURE midnightCountdown() BEGIN SELECT TIME_FORMAT
我正在尝试使用 postgresql 从表(login_history as t1)中检索以分钟为单位的时差。 当我尝试这段代码时 ((date_part('hour', timestamp '201
欢迎!我有问题想问你。我正在 Laravel 5.2 中为自己编写飞行日志。在公式中,我将有起飞时间和到达时间,但我不知道如何在 laravel 中计算时间差并将其自动传递到数据库。因此,最简单的方法
我已经查看了有关此主题的其他问答,但没有找到任何帮助。 我的应用记录比赛结果并保存到文件。 第一次点击它会写入当前时间,当运行者完成后,它会再次记录当前时间。 如何计算这两个时间以获得比赛时间? 这是
我有非常简单的代码来计算两次之间的差异: import java.text.SimpleDateFormat; import java.util.Date; import java.util.Greg
在 Python 中比较 2 次以加快测试一段代码的正确方法是什么?我尝试阅读 API 文档。我不确定我是否理解 timedelta。 到目前为止,我有这个代码: from datetime impo
这个问题非常类似于Best timestamp format for CSV/Excel? : 我正在写一个 CSV 文件。我需要编写至少精确到秒,最好精确到毫秒的时间跨度(又名时差)。 CSV 文件
我试图通过输入时间格式计算12小时内的java时差,当我输入开始时间11:58:10 pm和结束时间12:02时效果很好:15 点。但当我输入 12:00:00 am 和 12:00:00 pm 时,
因此,对于一项作业,我们必须编写一个程序,该程序需要两次军事时间,并显示它们之间的小时和分钟差异,假设第一次是两次时间中较早的一次。我们不允许使用 if 语句,因为它在技术上尚未被学习。这是运行时的示
我必须为分布在全局各地的所有人员制定 24 小时时间表。 例如,某人可以在 10:00 开始工作,并在 19:00 结束工作,因此获得时差非常简单,因为结束时间和开始时间在同一天。但是,如果我有人在
使用 ntp 时间时,(英国)返回的时间总是比实际时间少一小时。例如:现在时间是 13.35 但当我说日期时,它返回 12.35。有什么建议? try: c = ntplib.
我有一个应用程序,它在登录时记录时间,在退出时记录退出时间。 我的表有 IN_TIME 和 OUT_TIME 这些列中的数据示例: IN_TIME = 16:06:46 结束时间 = 16:08:07
我使用 $_POST 将变量从 ajax 表单发布到 php 服务器端我有两个变量,时间和金额。在服务器中,我有一个 MYSQL 数据库,其中包含 _end_time (数据类型:时间)和金额(数据类
我正在尝试计算在这里工作的人的轮类模式,从结束时间减去开始时间在大多数情况下都有效,但如果他们通宵工作则不行。例如,从 10pm 到 6am 工作的人将显示为: 22:00 - 06:00 我希望返回
任何人都可以提供一个 Excel 方程来计算两个 UTC 时间戳之间的差异。 UTC 时间戳的格式为 yyyymmddhhmmssZ(例如 20160127175049Z)。时间戳之间的差异最多为几个
我在大学学习一门名为“智能机器”的类(class)。我们向我们介绍了 3 种强化学习方法,并通过这些方法我们获得了何时使用它们的直觉,我引用: Q-Learning - 当 MDP 无法解决时最好。
我是一名优秀的程序员,十分优秀!