【Qt之QLocale】使用

描述

QLocale类可以在多种语言之间进行数字和字符串的转换。
QLocale类在构造函数中使用语言/国家对进行初始化,并提供类似于QString中的数字转字符串和字符串转数字的转换函数。
示例:

  QLocale egyptian(QLocale::Arabic, QLocale::Egypt);QString s1 = egyptian.toString(1.571429E+07, 'e');QString s2 = egyptian.toString(10);double d = egyptian.toDouble(s1);int i = egyptian.toInt(s2);

QLocale支持默认语言环境的概念,该语言环境在应用程序启动时根据系统的语言环境设置确定。可以通过调用静态成员函数setDefault()来更改默认语言环境。
设置默认语言环境有以下效果:
如果使用默认构造函数创建QLocale对象,它将使用默认语言环境的设置。
QString::toInt()QString::toDouble()等将根据默认语言环境解释字符串。如果解释失败,则返回"C"语言环境。
在格式字符串的位置说明符中包含’L’时,QString::arg()使用默认语言环境格式化数字,例如"%L1"。
以下示例说明了如何直接使用QLocale

  QLocale::setDefault(QLocale(QLocale::Hebrew, QLocale::Israel));QLocale hebrew; // 构造一个默认的QLocale对象QString s1 = hebrew.toString(15714.3, 'e');bool ok;double d;QLocale::setDefault(QLocale::C);d = QString("1234,56").toDouble(&ok);   // ok == falsed = QString("1234.56").toDouble(&ok);   // ok == true, d == 1234.56QLocale::setDefault(QLocale::German);d = QString("1234,56").toDouble(&ok);   // ok == true, d == 1234.56d = QString("1234.56").toDouble(&ok);   // ok == true, d == 1234.56QLocale::setDefault(QLocale(QLocale::English, QLocale::UnitedStates));str = QString("%1 %L2 %L3").arg(12345).arg(12345).arg(12345, 0, 16);// str == "12345 12,345 3039"
  1. 在构造函数中指定语言/国家对时,会出现以下三种情况之一:
  • 如果语言/国家对在数据库中找到,则使用它。
  • 如果找到了语言但没有找到国家,或者国家为AnyCountry,则使用具有最合适的可用国家的语言(例如,对于德语,使用德国)。
  • 如果既没有找到语言也没有找到国家,则QLocale默认使用默认语言环境(参见setDefault())。
    可以使用()和country()来确定实际使用的语言和国家值。
  1. 另一种构造QLocale对象的方法是通过指定区域设置名称。
  QLocale korean("ko");QLocale swiss("de_CH");

该构造函数将区域设置名称转换为语言/国家对;它不使用系统的区域设置数据库。
注意:要获取当前键盘输入语言环境,请查看QInputMethod::locale()

常用函数

枚举
  1. Country { AnyCountry, Afghanistan, Albania, Algeria, …, SintMaarten }:国家/地区枚举类型

  2. CurrencySymbolFormat { CurrencyIsoCode, CurrencySymbol, CurrencyDisplayName }:货币符号格式枚举类型

  3. FloatingPointPrecisionOption { FloatingPointest }:浮点数精度选项枚举类型

  4. FormatType { LongFormat, ShortFormat, NarrowFormat }:格式类型枚举类型

  5. Language { AnyLanguage, C, Abazian, Oromo, …, UncodedLanguages }:语言枚举类型

  6. MeasurementSystem { MetricSystem, ImperialUSSystem, ImperialUKSystem, ImperialSystem }:计量系统枚举类型

  7. NumberOption { DefaultNumberOptions, OmitGroupSeparator, RejectGroupSeparator, OmitLeadingZeroInponent, …, RejectTrailingZeroesAfterDot }:数字选项枚举类型

  8. QuotationStyle { StandardQuotation, AlternateQuotation }:引用样式枚举类型

  9. Script { AnyScript, AdlamScript, AhomScript, AnatolianHieroglyphsScript, YiScript }:脚本枚举类型

公有方法
  • QLocale():默认构造函数。

  • QLocale(const QString &name):通过区域的BCP-47名称来构造QLocale对象。

  • QLocale(Language language, Country country = AnyCountry):通过语言和国家/地区来构造QLocale对象。

  • QLocale(Language language, Script script, Country country):通过语言、脚本和国家/地区来构造QLocale对象。

  • QLocale(const QLocale &other):拷贝构造函数。

  • ~QLocale():析构函数。

  • QString amText() const:获取上午的文本表示。

  • QString bcp47Name() const:获取BCP-47格式的名称。

  • Country country() const:获取国家/地区。

  • QString createSeparatedList(const QStringList &list) const:将列表中的字符串用适当的分隔符连接起来。

  • QString currencySymbol(CurrencySymbolFormat format = CurrencySymbol) const:获取货币符号。

  • QString dateFormatFormatType format = LongFormat) const:获取日期格式。

  • `QString dateTimeFormat(FormatType format = LongFormat) const:获取日期和时间格式。

  • QString dayName(int day, FormatType type = LongFormat) const:获取星期几的名称。

  • QChar decimalPoint() const:获取小数点符号。

  • QChar exponential() const:获取科学计数法表示中的指数符号。

  • Qt::DayOfWeek firstDayOfWeek() const:获取星期的第一天。

  • QChar groupSeparator() const:获取千位分隔符。

  • Language language() const:获取语言。

  • MeasurementSystem measurementSystem() const:获取测量系统。

  • QString monthName(int month, FormatType type = LongFormat) const:获取月份的名称。

  • QString name() const:获取区域的名称。

  • QString nativeCountryName() const:获取本地化的国家/地区名称。

  • QString nativeLanguageName() const:获取本地化的语言名称。

  • QChar negativeSign() const:获取负号符号。

  • NumberOptions numberOptions() const:获取数字显示的选项。

  • QChar percent() const:获取百分号符号。

  • QString pmText() const:获取下午的文本表示。

  • QChar positiveSign() const:获取正号符号。

  • QString quoteString(const QString &str, QuotationStyle style = StandardQuotation) const:将字符串用引号括起来。

  • QString quoteString(const QStringRef &str, QuotationStyle style = StandardQuotation) const:将字符串引用用引号括起来。

  • Script script() const获取脚本。

  • void setNumberOptions(NumberOptions options)设置数字显示的选项。

  • QString standaloneDayName(int day, FormatType type = LongFormat) const获取独立的星期几的名称。

  • QString standaloneMonthName(int month, FormatType type = LongFormat) const获取独立的月份的名称。

  • void swap(QLocale &other)交换两个QLocale对象的内容。

  • Qt::LayoutDirection textDirection() const获取文本的布局方向。

  • QString timeFormat(FormatType format = LongFormat) const获取时间格式。

  • QString toCurrencyString(qlonglong value, const QString &symbol = QString()) const将长整型数值转换为货币字符串。

  • QString toCurrencyString(qulonglong value, const QString &symbol = QString()) const将无符号长整型数值转换为货币字符串。

  • QString toCurrencyString(short value, const QString &symbol = QString()) const将短整型数值转换为货币字符串。

  • QString toCurrencyString(ushort value, const QString &symbol = QString()) const将无符号短整型数值转换为货币字符串。

  • QString toCurrencyString(int value, const QString &symbol = QString()) const将整型数值转换为货币字符串。

  • QString toCurrencyString(uint value, const QString &symbol = QString()) const将无符号整型数值转换为货币字符串。

  • QString toCurrencyString(double value, const QString &symbol = QString()) const将双精度浮点数值转换为货币字符串。

  • QString toCurrencyString(double value, const QString &symbol, int precision) const将双精度浮点数值以指定精度转换为货币字符串。

  • QString toCurrencyString(float value, const QString &symbol = QString()) const将单精度浮点数值转换为货币字符串。

  • QString toCurrencyString(float value, const QString &symbol, int precision) const将单精度浮点数值以指定精度转换为货币字符串。

  • QDate toDate(const QString &string, FormatType format = LongFormat) const将字符串转换为日期。

  • QDate toDate(const QString &string, const QString &format) const将字符串按指定格式转换为日期。

  • QDateTime toDateTime(const QString &string, FormatType format = LongFormat) const将字符串转换为日期和时间。

  • QDateTime toDateTime(const QString &string, const QString &format) const将字符串按指定格式转换为日期和时间。

  • double toDouble(const QString &s, bool *ok = Q_NULLPTR) const将字符串转换为双精度浮点数。

  • double toDouble(const QStringRef &s, bool *ok = Q_NULLPTR) const将字符串引用转换为双精度浮点数。

  • float toFloat(const QString &s, bool *ok = Q_NULLPTR) const将字符串转换为单精度浮点数。

  • float toFloat(const QStringRef &s, bool *ok = Q_NULLPTR) const将字符串引用转换为单精度浮点数。

  • int toInt(const QString &s, bool *ok = Q_NULLPTR) const将字符串转换为整型数。

  • int toInt(const QStringRef &s, bool *ok = Q_NULLPTR) const将字符串引用转换为整型数。

  • qlonglong toLongLong(const QString &s, bool *ok = Q_NULLPTR) const将字符串转换为长整型数。

  • qlonglong toLongLong(const QStringRef &s, bool *ok = Q_NULLPTR) const将字符串引用转换为长整型数。

  • QString toLower(const QString &str) const将字符串转换为小写形式。

  • short toShort(const QString &s, bool *ok = Q_NULLPTR) const将字符串转换为短整型数。

  • short toShort(const QStringRef &s, bool *ok = Q_NULLPTR) const将字符串引用转换为短整型数。

  • QString toString(qlonglong i) const将长整型数转换为字符串。

  • QString toString(qulonglong i) const将无符号长整型数转换为字符串。

  • QString toString(short i) const将短整型数转换为字符串。

  • QString toString(ushort i) const将无符号短整型数转换为字符串。

  • QString toString(int i) const将整型数转换为字符串。

  • QString toString(uint i) const将无符号整型数转换为字符串。

  • QString toString(double i, char f = 'g', int prec = 6) const将双精度浮点数转换为字符串。

  • QString toString(float i, char f = 'g', int prec = 6) const将单精度浮点数转换为字符串。

  • QString toString(const QDate &date, const QString &format) const将日期按指定格式转换为字符串。

  • QString toString(const QDate &date, FormatType format = LongFormat) const将日期转换为字符串。

  • QString toString(const QTime &time, const QString &format) const将时间按指定格式转换为字符串。

  • QString toString(const QTime &time, FormatType format = LongFormat) const将时间转换为字符串。

  • QString toString(const QDateTime &dateTime, FormatType format = LongFormat) const将日期和时间转换为字符串。

  • QString toString(const QDateTime &dateTime, const QString &format) const将日期和时间按指定格式转换为字符串。

  • QTime toTime(const QString &string, FormatType format = LongFormat) const将字符串转换为时间。

  • QTime toTime(const QString &string, const QString &format) const将字符串按指定格式转换为时间。

  • uint toUInt(const QString &s, bool *ok = Q_NULLPTR) const将字符串转换为无符号整型数。

  • uint toUInt(const QStringRef &s, bool *ok = Q_NULLPTR) const将字符串引用转换为无符号整型数。

  • qulonglong toULongLong(const QString &s, bool *ok = Q_NULLPTR) const将字符串转换为无符号长整型数。

  • qulonglong toULongLong(const QStringRef &s, bool *ok = Q_NULLPTR) const将字符串引用转换为无符号长整型数。

  • ushort toUShort(const QString &s, bool *ok = Q_NULLPTR) const将字符串转换为无符号短整型数。

  • ushort toUShort(const QStringRef &s, bool *ok = Q_NULLPTR) const将字符串引用转换为无符号短整型数。

  • QString toUpper(const QString &str) const将字符串转换为大写形式。

  • QStringList uiLanguages() const获取支持的UI语言列表。

  • QList<Qt::DayOfWeek weekdays() const获取一周的星期几列表。

  • QChar zeroDigit() const获取零字符。

  • bool operator!=(const QLocale &other) const判断两个QLocale对象是否不相等。

  • QLocale &operator=(QLocale &&other)将一个QLocale对象的内容移动赋值给当前对象。

  • QLocale &operator=(const QLocale &other)将一个QLocale对象的内容复制给当前对象。

  • bool operator==(const QLocale &other) const判断两个QLocale对象是否相等。

示例

    // 获取系统的默认区域设置QLocale locale = QLocale::system();// 将数字转换为字符串int number = 123456;QString numberString = locale.toString(number);qDebug() << "Number:" << numberString; // 输出:"Number: 123,456"(如果系统的默认区域设置是中文或其他使用逗号作为千位分隔符的语言)// 将字符串转换为数字QString numberString2 = "987,654.32";double number2 = locale.toDouble(numberString2);qDebug() << "Number2:" << number2; // 输出:"Number2: 987654.32"// 格式化日期和时间QDateTime dateTime = QDateTime::currentDateTime();QString formattedDateTime = locale.toString(dateTime, "yyyy-MM-dd hh:mm:ss");qDebug() << "Formatted DateTime:" << formattedDateTime; // 输出:"Formatted DateTime: 2023-10-29 11:31:33"// 获取星期几的名称for (int i = Qt::Monday; i <= Qt::Sunday; i++) {Qt::DayOfWeek dayOfWeek = static_cast<Qt::DayOfWeek>(i);QString dayName = locale.standaloneDayName(dayOfWeek, QLocale::ShortFormat);qDebug() << "Day Name:" << dayName; // 输出:星期一、星期二等(根据系统的默认区域设置)}

结果

在这里插入图片描述

使用场景

  1. 数字和字符串的格式化:QLocale可以将数字格式化为带有千位分隔符、小数位数和货币符号的字符串,也可以将字符串转换为数字。

  2. 日期和时间的格式化:QLocale可以将日期和时间格式化为特定的日期格式、时间格式和日期时间格式,以适应不同的地区和语言习惯。

  3. 货币格式化:QLocale支持将货币格式化为带有货币符号、千位分隔符和小数位数的字符串,并可以根据特定国家/地区的习惯进行舍入和舍入规则。

  4. 语言和地区设置:QLocale可以获取当前系统的默认区域设置信息,包括当前所使用的语言、国家/地区、货币和日期时间的格式等。

  5. 语言和地区的切换:QLocale使得应用程序可以根据用户的偏好在不同的语言和地区之间进行切换,以提供本地化的用户界面和内容。

总之,QLocale是一个重要的工具类,用于处理与地区相关的数据和操作,它可以帮助开发人员实现国际化和本地化的功能,使应用程序能够根据用户的语言和地区偏好提供适当的显示和格式。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/125586.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

证照之星XE专业版下载专业证件照制作工具

值得肯定的是智能背景替换功能&#xff0c;轻松解决背景处理这一世界难题。不得不提及的是新增打印字体设置&#xff0c;包含字体选择、字号大小、字体颜色等。不同领域的应用证明了万能制作&#xff0c;系统支持自定义证照规格&#xff0c;并预设了17种常用的证件照规格。人所…

c语言练习(9周)

输入样例11输出样例7.0980 #include<stdio.h> int main() {int n, i;double s 1,a1;scanf("%d", &n);for (i 2; i < n; i) {a 1 / (1a);s a;}printf("%.4lf", s);return 0; } 题干输入10个整数&#xff0c;分别按输入正序、逆序显示。输…

2021-arxiv-LoRA Low-Rank Adaptation of Large Language Models

2021-arxiv-LoRA Low-Rank Adaptation of Large Language Models Paper: https://arxiv.org/abs/2106.09685 Code: https://github.com/microsoft/LoRA 大型语言模型的LoRA低秩自适应 自然语言处理的一个重要范式包括对通用领域数据的大规模预训练和对特定任务或领域的适应。…

IOI车机系统刷机和改包笔记2 - 改包脚本

前言&#xff1a; 最近对雪佛兰改包需求感兴趣的网友很多&#xff0c;大家都遇上了很多奇怪的问题&#xff0c;这里就我自己使用的环境和脚本进行分享&#xff0c;供大家参考。 1. 准备环境 我这里使用Ubuntu系统进行操作 andyandy-vm:~$ sudo lsb_release -a No LSB module…

iZotope RX 10(音频修复和增强工具)

iZotope RX 10是一款音频修复和增强软件&#xff0c;主要特点包括&#xff1a; 声音修复&#xff1a;iZotope RX 10可以去除不良噪音、杂音、吱吱声等&#xff0c;使音频变得更加清晰干净。音频增强&#xff1a;iZotope RX 10支持对音频进行音量调节、均衡器、压缩器、限制器等…

如何在【逻辑回归】中优化控制正则化程度的超参数C

一.逻辑回归基本介绍 逻辑回归也称作logistic回归&#xff0c;是一种广义的线性回归分析模型&#xff0c;主要是用来解决二分类问题&#xff08;也可以解决多分类问题&#xff09;。通过训练集来训练模型&#xff0c;并在训练结束后对测试集进行分类。 通过激活函数&…

杂货铺 | 报错记录(持续更新)

文章目录 ⚠️python SyntaxError: Non-UTF-8 code starting with ‘\xb3‘ in file⚠️partially initialized module ‘‘ has no attribute ‘‘(most likely due to a circular import)⚠️AttributeError: ‘DataFrame‘ object has no attribute ‘append‘ ⚠️python S…

Flink CDC 2.0 主要是借鉴 DBLog 算法

DBLog 算法原理 DBLog 这个算法的原理分成两个部分&#xff0c;第一部分是分 chunk&#xff0c;第二部分是读 chunk。分 chunk 就是把一张表分为多个 chunk&#xff08;桶/片&#xff09;。我可以把这些 chunk 分发给不同的并发的 task 去做。例如&#xff1a;有 reader1 和 re…

springboot是如何工作的

一、前言 现在java后端开发框架比较多的使用springboot框架&#xff0c;springboot是在以前的springMVC进行封装和优化&#xff0c;最大的特点是简化了配置和内置Tomcat。本节通过阅读源码理解springboot是如何工作的。 二、springboot是如何工作的 1、从启动类开始 /***服务…

JAVA毕业设计107—基于Java+Springboot+Vue的民宿酒店预订管理系统(源码+数据库)

基于JavaSpringbootVue的民宿酒店预订管理系统(源码数据库)107 一、系统介绍 本系统前后端分离 本系统分为用户、前台、管理员三种角色(角色菜单可以自行分配) 前台&#xff1a; 登录、注册、民宿浏览、民宿评价、民宿酒店下单预订、密码修改、个人信息修改。 管理后台&…

机泵设备如何通过设备健康管理平台实施预测性维护

机泵设备在工业生产中起着至关重要的作用&#xff0c;但长时间运行和频繁使用容易引发各种故障。为了提高机泵设备的可靠性和效率&#xff0c;预测性维护成为一种重要的管理策略。设备健康管理平台作为一种先进的工具&#xff0c;为机泵设备的预测性维护提供了有力支持。本文将…

NlogPrismWPF

文章目录 Nlog&Prism&WPF日志模块实现原理添加配置注入服务应用测试其他模块怎么调用&#xff1f; Nlog&Prism&WPF 日志模块 介绍了为WPF框架Prism注册Nlog日志服务的方法 实现原理 无论是在WPF或者ASP.NET Core当中, 都可以使用ServiceCollection来做到着…

【HarmonyOS】鸿蒙操作系统架构

HarmonyOS架构 一. 鸿蒙系统定位二. 架构整体遵从分层设计三. HarmonyOS具有的技术特性四. HarmonyOS有三大特征 其它相关推荐&#xff1a; 软考系统架构之案例篇(架构设计相关概念) 系统架构之微服务架构 系统架构设计之微内核架构 所属专栏&#xff1a;系统架构设计师 一. 鸿…

在excel中如何打出上标、下标

例如&#xff0c;想把A2的2变为下标。 在单元中输入内容&#xff1a; 选中2&#xff1a; 右键单击&#xff0c;然后点击“设置单元格格式”&#xff1a; 在特殊效果的下面勾选“下标”&#xff0c;然后点击下面的“确定”按钮&#xff1a; 就将2变为下标了&#xff1a;…

竞赛选题 深度学习图像风格迁移 - opencv python

文章目录 0 前言1 VGG网络2 风格迁移3 内容损失4 风格损失5 主代码实现6 迁移模型实现7 效果展示8 最后 0 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分享的是 &#x1f6a9; 深度学习图像风格迁移 - opencv python 该项目较为新颖&#xff0c;适合作为竞赛课题…

Go Map底层实现简述

Go的map是一种高效的数据结构&#xff0c;用于存储键值对。其底层实现是一个哈希表&#xff08;hash table&#xff09;&#xff0c;下面是有关map底层实现的详细介绍&#xff1a; 哈希表&#xff1a; map的底层实现是一个哈希表&#xff0c;也称为散列表。哈希表是一个数组&a…

13.7性能测试工具(LoadRunner)(简单扫盲)

下载LoadRunner和360极速浏览器 一.为什么选择LoadRunner而不是Jmeter 1.Jmeter没有录制功能. 2.LoadRunner可以设计非常丰富的测试场景. 3.LoadRunner能够产出非常丰富的测试报告. 二.LoadRunner三大组件 1.VUG: 功能: 录制脚本(编写脚本). 2.Controller: 功能: 设计场…

2021年06月 Python(二级)真题解析#中国电子学会#全国青少年软件编程等级考试

Python等级考试(1~6级)全部真题・点这里 一、单选题(共25题,每题2分,共50分) 第1题 执行下列代码后,运行结果是? seq=[hello,good,morning] s=*.join(seq

【设计模式】第8节:结构型模式之“适配器模式”

一、简介 适配器模式是用来做适配的&#xff0c;它将不兼容的接口转换为可兼容的接口&#xff0c;让原本由于接口不兼容而不能一起工作的类可以一起工作。 适配器模式角色&#xff1a; 请求者client&#xff1a;调用服务的角色目标Target&#xff1a;定义了Client要使用的功…

企业金蝶KIS软件服务器中了locked勒索病毒怎么办,勒索病毒解密

最近一段时间&#xff0c;网络上的locked勒索病毒又开始了新一波的攻击&#xff0c;给企业的正常生产生活带来了严重影响。经过最近一段时间云天数据恢复中心对locked勒索病毒的解密&#xff0c;为大家整理了以下有关locked勒索病毒的相关信息。近期locked勒索病毒主要攻击金蝶…