locale::category

提供位屏蔽值表示标准个系列的整数类型。

typedef int category;
static const int collate = LC_COLLATE;
static const int ctype = LC_CTYPE;
static const int monetary = LC_MONETARY;
static const int numeric = LC_NUMERIC;
static const int time = LC_TIME;
static const int messages = LC_MESSAGES;
static const int all = LC_ALL;
static const int none = 0;

备注

类型是表示位屏蔽本机类型不同的元素一组类区域设置或可表示任何对应的 C# 区域设置类别的 int 类型的同义词。 元素为:

  • collate,与 C# LC_COLLATE 相应类别

  • ctype,与 C# LC_CTYPE 相应类别

  • monetary,与 C# LC_MONETARY 相应类别

  • numeric,与 C# LC_NUMERIC 相应类别

  • 时间,与 C# LC_TIME 相应类别

  • messages,Posix 与类别相对应 LC_MESSAGES

此外,两有用的值为:

  • none无 C,与类别相对应

  • all,所有与类别相对应 LC_ALL C# 联合

可以表示类别的任意组使用 OR 使用这些常量,monetary | 时间

要求

页眉: <区域设置>

命名空间: std

请参见

参考

locale 类