strftime()是C语言中的函数,用于格式化日期和时间。它位于头文件time.h下,该文件还包含一个名为struct tm的结构,该结构用于保存时间和日期。 strftime()的语法如下所示:
size_t strftime(char *s, size_t max, const char *format, const struct tm *tm);
strftime()函数根据格式中指定的格式化规则对broken-down时间tm进行格式化,并将其存储在字符数组s中。
strftime()的一些格式说明符如下所示:
%x =首选日期表示
%I =小时(十进制数字)(12小时制)。
%M =分钟的分钟数,范围从00到59。
%p =根据给定的时间值,“AM”或“PM”等。
%a =星期几的缩写
%A =工作日全名
%b =缩写的月份名称
%B = 3月的全月名称
%c =日期和时间表示
%d =每月的一天(01-31)
%H = 24小时格式的小时(00-23)
%I = 12h格式的小时(01-12)
%j =一年中的某天(001-366)
%m =月作为十进制数字(01-12)
%M =分钟(00-59)
在time.h中定义的结构struct tm如下:
struct tm { int tm_sec; // seconds int tm_min; // minutes int tm_hour; // hours int tm_mday; // day of the month int tm_mon; // month int tm_year; // The number of years since 1900 int tm_wday; // day of the week int tm_yday; // day in the year int tm_isdst; // daylight saving time };
// C program to demonstrate the
// working of strftime()
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#define Size 50
int main ()
{
time_t t ;
struct tm *tmp ;
char MY_TIME[Size];
time( &t );
//localtime() uses the time pointed by t ,
// to fill a tm structure with the
// values that represent the
// corresponding local time.
tmp = localtime( &t );
// using strftime to display time
strftime(MY_TIME, sizeof(MY_TIME), "%x - %I:%M%p", tmp);
printf("Formatted date & time:%s\n", MY_TIME );
return(0);
}
Formatted date & time:03/20/17 - 02:55PM
Why and when do we use strftime() ?
当我们制作一个软件/应用程序时,它将根据用户的需求以多种格式输出当前时间,并且最重要的是。然后,在这种情况下,我们将使用此函数。它的特长是我们可以用许多不同的格式显示日期和时间。
参考:http://man7.org/linux/man-pages/man3/strftime.3.html>Linux Man Page
相关用法
- C++ log()用法及代码示例
- C++ div()用法及代码示例
- C++ fma()用法及代码示例
- C++ imag()用法及代码示例
- C++ map key_comp()用法及代码示例
- C++ real()用法及代码示例
- C++ wcsstr()用法及代码示例
- C++ wcstok()用法及代码示例
- C语言 strlwr()用法及代码示例
- C++ wcsncpy()用法及代码示例
注:本文由纯净天空筛选整理自 strftime() function in C/C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。