C语言的setlocale和localtime函数(C++也可用)
2024-09-04 11:51:55 215人阅读
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| /* setlocale example */#include <stdio.h> /* printf */#include <time.h> /* time_t, struct tm, time, localtime, strftime */#include <locale.h> /* struct lconv, setlocale, localeconv */int main (){ time_t rawtime; struct tm * timeinfo; char buffer [80]; struct lconv * lc; time ( &rawtime ); timeinfo = localtime ( &rawtime ); int twice=0; do { printf ("Locale is: %s\n", setlocale(LC_ALL,NULL) ); strftime (buffer,80,"%c",timeinfo); printf ("Date is: %s\n",buffer); lc = localeconv (); printf ("Currency symbol is: %s\n-\n",lc->currency_symbol); setlocale (LC_ALL,""); } while (!twice++); return 0;}
| |
One of the possible outputs when the previous code is run is:
Locale is: CDate is: 01/15/07 13:33:47Currency symbol is: -Locale is: English_United States.1252Date is: 1/15/07 1:33:47 PMCurrency symbol is: $- |
http://www.cplusplus.com/reference/clocale/setlocale/
C语言的setlocale和localtime函数(C++也可用)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉:
投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。