PR_NormalizeTime 编辑
Adjusts the fields of a clock/calendar time to their proper ranges, using a callback function.
Syntax
#include <prtime.h> void PR_NormalizeTime ( /wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRExplodedTime *time, PRTimeParamFn params);
Parameters
The function has these parameters:
time
- A pointer to a clock/calendar time in the
/wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRExplodedTime
format. params
- A time parameter callback function.
Returns
Nothing; the time
parameter is altered by the callback function.
Description
This function adjusts the fields of the specified time structure using the specified time parameter callback function, so that they are in the proper range.
Call this function in these situations:
- To normalize a time after performing arithmetic operations directly on the field values of the calendar time object. For example, if you have a
]
object that represents the date 3 March 1998 and you want to say "forty days from 3 March 1998", you can simply add 40 to thetm_mday
field and then callPR_NormalizeTime()
.
- To calculate the optional field values
tm_wday
andtm_yday
. For example, suppose you want to compute the day of week for 3 March 1998. You can settm_mday
to 3,tm_month
to 2, andtm_year
to 1998, and all the other fields to 0, then callPR_NormalizeTime()
with/wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PR_GMTParameters
. On return,tm_wday
(andtm_yday
) are set for you.
- To convert from one time zone to another. For example, if the input argument time is in time zone A and the input argument
params
represents time zone B, whenPR_NormalizeTime()
returns, time will be in time zone B.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论