检查纪元时间戳是否在c ++中给定的人类可读时间范围内

时间:2018-06-17 16:09:41

标签: c++ epoch

我有一个

import numpy
import matplotlib.pyplot as plt
import time

while True:

    matrix = numpy.loadtxt('res/matrix_' + str(i) + '.txt')

    plt.clf()
    plt.imshow(matrix)
    plt.show()
    time.sleep(3)
    i=i+1

t1和t2由用户提供,并由我的代码存储为uint64_t ts=1523613515992249788 std::string t1; std::string t2; //example t1="09:00",t2="15:30" (这是HH:MM格式的人类可读时间)

上面的ts是

  • GMT:2018年4月13日星期五09:58:35.992
  • IST:2018年4月13日星期五15:28:35.992 GMT + 05:30

默认情况下我假设t1和t2在IST中,(作为命令行参数给出) 我正在尝试编写如下的函数

std::string

使用gcc 4.8.3并且不能使用boost库

完整代码:https://pastebin.com/bCpkQyFM

0 个答案:

没有答案