LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, LC_TIME
定义于头文件 <clocale>
|
||
#define LC_ALL /*implementation defined*/ |
||
#define LC_COLLATE /*implementation defined*/ |
||
#define LC_CTYPE /*implementation defined*/ |
||
#define LC_MONETARY /*implementation defined*/ |
||
#define LC_NUMERIC /*implementation defined*/ |
||
#define LC_TIME /*implementation defined*/ |
||
上面每个宏常量都展开成拥有相异值的整数常量表达式,适合用作 std::setlocale 的首个参数。
常量 | 解释 |
LC_ALL
|
选择整个 C 本地环境 |
LC_COLLATE
|
选择 C 本地环境的对照类别 |
LC_CTYPE
|
选择 C 本地环境中的字符分类类别 |
LC_MONETARY
|
选择 C 本地环境中的货币格式化类别 |
LC_NUMERIC
|
选择 C 本地环境中的数值格式化类别 |
LC_TIME
|
选择 C 本地环境中的时间格式化类别 |
<clocale>
中可以定义附加宏常量,名称以 LC_
后随至少一个大写字母开始。例如, POSIX 规范要求 LC_MESSAGES (控制 std::perror 和 std::strerror ), ISO/IEC 30112:2014 ( 2014 方案)额外定义 LC_IDENTIFICATION 、 LC_XLITERATE 、 LC_NAME 、 LC_ADDRESS 、 LC_TELEPHONE 、 LC_PAPER 、 LC_MEASUREMENT 和 LC_KEYBOARD ,它们均为 GNU C 库所支持(除了 LC_XLITERATE )。
示例
运行此代码
#include <cstdio> #include <clocale> #include <ctime> #include <cwchar> int main() { std::setlocale(LC_ALL, "en_US.UTF-8"); // C 本地环境将为启用 UTF-8 的英文 std::setlocale(LC_NUMERIC, "de_DE.UTF-8"); // 小数点将为德文 std::setlocale(LC_TIME, "ja_JP.UTF-8"); // 日期/时间格式化将为日文 wchar_t str[100]; std::time_t t = std::time(nullptr); std::wcsftime(str, 100, L"%A %c", std::localtime(&t)); std::wprintf(L"Number: %.2f\nDate: %Ls\n", 3.14, str); }
输出:
Number: 3,14 Date: 月曜日 2011年12月19日 18時04分40秒
参阅
获取和设置当前 C 本地环境 (函数) | |
用以封装文化差异的多态刻面的集合 (类) |