Questions tagged «time»

测量执行操作所需的时间。此外,还有与获取当前时间,按时间计算,格式化和解析时间等有关的问题。

9
在C中获取当前时间
我想获取系统的当前时间。为此,我在C中使用以下代码: time_t now; struct tm *mytime = localtime(&now); if ( strftime(buffer, sizeof buffer, "%X", mytime) ) { printf("time1 = \"%s\"\n", buffer); } 问题在于此代码给出了一些随机时间。另外,随机时间每次都不同。我想要系统的当前时间。
97 c  time  time-t  localtime 


5
如何使用Active Support核心扩展
我已经安装了Active Support 3.0.3,并且已将Rails 3.0.3与Ruby 1.8.7一起安装。 当我尝试使用时,1.week.ago我得到 NoMethodError: undefined method 'week' for 1:Fixnum from (irb):2 其他核心扩展似乎也有效。我在朋友的计算机上尝试过(相同的安装规格和旧版本),结果相同。 是什么赋予了? 所有这些都在IRB中。

30
用JavaScript时间创建一个唯一的数字
我需要使用JavaScript动态生成唯一的ID号。过去,我是通过使用时间创建数字来实现的。该数字由四位数的年份,两位数的月份,两位数的日期,两位数的小时,两位数的分钟,两位数的秒和三位数的毫秒组成。因此它看起来像这样:20111104103912732 ...对于我的目的,这将足够确定唯一的数字。 自从我这样做已经有一段时间了,我再也没有代码了。任何人都有执行此操作的代码,或者有更好的建议来生成唯一ID?




13
在PHP中添加分钟到日期时间
在进行了大量的google'ing和PHP手动阅读之后,我真的很想在日期时间增加X分钟,我似乎一无所获。 我的日期时间格式是: 2011-11-17 05:05: year-month-day hour:minute 要添加的分钟数只是0到59之间的数字 我希望输出与添加分钟的输入格式相同。 有人可以给我一个有效的代码示例,因为我的尝试似乎并没有带我去任何地方?
95 php  date  time 

2
将小时,分钟,秒添加到当前时间
如何将小时,分钟和秒(定义为整数)添加到当前时间,类似于AddDate? timein := time.Now().Local().AddDate(Hours, Mins, Sec) 但要花几小时,几分钟和几秒钟
95 go  time 


6
从年,月,日创建Java日期对象
int day = Integer.parseInt(request.getParameter("day")); // 25 int month = Integer.parseInt(request.getParameter("month")); // 12 int year = Integer.parseInt(request.getParameter("year")); // 1988 System.out.println(year); Calendar c = Calendar.getInstance(); c.set(year, month, day, 0, 0); b.setDob(c.getTime()); System.out.println(b.getDob()); 输出为: 1988年 1月25 日星期三00:00:08 IST 1989 我过去了,25 12 1988但我得到了25 Jan 1989。为什么?
94 java  date  time  calendar 


2
用于将字符向量转换为POSIXct / POSIXlt的as.POSIXct / as.POSIXlt和strptime之间的区别
我在这里关注了许多问题,询问如何将字符向量转换为日期时间类。我经常看到2种方法,即strptime和as.POSIXct / as.POSIXlt方法。我看了两个功能,但不清楚有什么区别。 strptime function (x, format, tz = "") { y <- .Internal(strptime(as.character(x), format, tz)) names(y$year) <- names(x) y } <bytecode: 0x045fcea8> <environment: namespace:base> as.POSIXct function (x, tz = "", ...) UseMethod("as.POSIXct") <bytecode: 0x069efeb8> <environment: namespace:base> as.POSIXlt function (x, tz = "", ...) UseMethod("as.POSIXlt") <bytecode: 0x03ac029c> <environment: namespace:base> 进行微基准测试,看看是否存在性能差异: …
93 r  date  time  benchmarking 


14
如何为C ++程序添加定时延迟?
我试图在C ++程序中添加定时延迟,并且想知道是否有人对我可以尝试的内容或可以查看的信息有任何建议? 我希望我有更多有关如何实现此定时延迟的详细信息,但是在获得有关如何添加定时延迟的更多信息之前,我不确定甚至应如何尝试执行此操作。
93 c++  time 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.