鸿蒙开发接口资源管理:【@ohos.intl (国际化-Intl)】

国际化-Intl

icon-note.gif

 说明:
开发前请熟悉鸿蒙开发指导文档:gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md点击或者复制转到。

  • 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
  • Intl模块包含国际化能力基础接口(在ECMA 402中定义)。

导入模块

import Intl from '@ohos.intl';

Locale

属性

系统能力:以下各项对应的系统能力均为SystemCapability.Global.I18n

名称参数类型可读可写说明
languagestring与区域设置关联的语, 如:zh。
scriptstring语言的书写方式,如:Hans。
regionstring与区域设置相关的地区,如:CN。
baseNamestringLocale的基本核心信息(由语言脚本与地区组成),如:zh-Hans-CN。
caseFirststring区域的整理规则是否考虑大小写,取值包括:"upper", "lower", "false"。
calendarstring区域的日历信息,取值包括:"buddhist", "chinese", "coptic","dangi", "ethioaa", "ethiopic", "gregory", "hebrew", "indian", "islamic", "islamic-umalqura", "islamic-tbla", "islamic-civil", "islamic-rgsa", "iso8601", "japanese", "persian", "roc", "islamicc"。
collationstring区域的排序规则,取值包括:"big5han", "compat", "dict", "direct", "ducet", "eor", "gb2312", "phonebk", "phonetic", "pinyin", "reformed", "searchjl", "stroke", "trad", "unihan", "zhuyin"。
hourCyclestring区域的时制信息,取值包括:"h12", "h23", "h11", "h24"。
numberingSystemstring区域使用的数字系统,取值包括:"adlm", "ahom", "arab", "arabext", "bali", "beng", "bhks", "brah", "cakm", "cham", "deva", "diak", "fullwide", "gong", "gonm", "gujr", "guru", "hanidec", "hmng", "hmnp", "java", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"。
numericboolean是否对数字字符具有特殊的排序规则处理。

constructor8+

constructor()

创建区域对象

系统能力:SystemCapability.Global.I18n

示例:

var locale = new Intl.Locale();

constructor

constructor(locale: string, options?: LocaleOptions)

创建区域对象

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
localestring包含区域设置信息的字符串,包括语言以及可选的脚本和区域。
optionsLocaleOptions用于创建区域对象的选项。

示例:

var locale = new Intl.Locale("zh-CN");

toString

toString(): string

将区域信息转换为字符串

系统能力:SystemCapability.Global.I18n

返回值:

类型说明
string字符串形式的区域信息。

示例:

var locale = new Intl.Locale("zh-CN");
locale.toString();

maximize

maximize(): Locale

最大化区域信息,若缺少脚本与地区信息,则补齐。

系统能力:SystemCapability.Global.I18n

返回值:

类型说明
[Locale]最大化后的区域对象。

示例:

var locale = new Intl.Locale("zh-CN");
locale.maximize();

minimize

minimize(): Locale

最小化区域信息,若包含脚本与地区信息,则去除。

系统能力:SystemCapability.Global.I18n

返回值:

类型说明
[Locale]最小化后的区域对象。

示例:

var locale = new Intl.Locale("zh-CN");
locale.minimize();

LocaleOptions

表示区域初始化选项。

系统能力:以下各项对应的系统能力均为SystemCapability.Global.I18n

名称参数类型可读可写说明
calendarstring日历参数,如:"buddhist", "chinese", "coptic", "dangi", "ethioaa", "ethiopic", "gregory", "hebrew", "indian", "islamic", "islamic-umalqura", "islamic-tbla", "islamic-civil", "islamic-rgsa", "iso8601", "japanese", "persian", "roc", "islamicc"。
collationstring排序参数,取值包括:"big5han", "compat", "dict", "direct", "ducet", "emoji", "eor", "gb2312", "phonebk", "phonetic", "pinyin", "reformed ", "search", "searchjl", "standard", "stroke", "trad", "unihan", "zhuyin"。
hourCyclestring时制格式,取值包括:"h11", "h12", "h23", "h24"。
numberingSystemstring数字系统,取值包括:"adlm", "ahom", "arab", "arabext", "bali", "beng", "bhks", "brah", "cakm", "cham", "deva", "diak", "fullwide", "gong", "gonm", "gujr", "guru", "hanidec", "hmng", "hmnp", "java", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"。
numericboolean是否使用12小时制。
caseFirststring表示大写、小写的排序顺序,取值范围:"upper", "lower", "false"。

DateTimeFormat

constructor8+

constructor()

创建时间日期格式化对象。

系统能力:SystemCapability.Global.I18n

示例:

var datefmt= new Intl.DateTimeFormat();

constructor

constructor(locale: string | Array<string>, options?: DateTimeOptions)

创建时间日期格式化对象。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
localestringArray<string>包含区域设置信息的字符串,包括语言以及可选的脚本和区域。
options[DateTimeOptions]用于创建时间日期格式化的选项。

示例:

var datefmt= new Intl.DateTimeFormat("zh-CN", { dateStyle: 'full', timeStyle: 'medium' });

示例:

var datefmt= new Intl.DateTimeFormat(["ban", "zh"], { dateStyle: 'full', timeStyle: 'medium' });

format

format(date: Date): string

格式化时间日期字符串。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
dateDate时间日期对象。

返回值:

类型说明
string格式化后的时间日期字符串

示例:

var date = new Date(2021, 11, 17, 3, 24, 0);
var datefmt = new Intl.DateTimeFormat("en-GB");
datefmt.format(date);

formatRange

formatRange(startDate: Date, endDate: Date): string

格式化时间日期段字符串。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
startDateDate起始的时间日期。
endDateDate结束的时间日期。

返回值:

类型说明
string格式化后的时间日期段字符串。

示例:

var startDate = new Date(2021, 11, 17, 3, 24, 0);
var endDate = new Date(2021, 11, 18, 3, 24, 0);
var datefmt = new Intl.DateTimeFormat("en-GB");
datefmt.formatRange(startDate, endDate);

resolvedOptions

resolvedOptions(): DateTimeOptions

获取DateTimeFormat对象的格式化选项。

系统能力:SystemCapability.Global.I18n

返回值:

类型说明
[DateTimeOptions]DateTimeFormat 对象的格式化选项。

示例:

var datefmt = new Intl.DateTimeFormat("en-GB");
datefmt.resolvedOptions();

DateTimeOptions

表示时间日期格式化选项。

系统能力:以下各项对应的系统能力均为SystemCapability.Global.I18n

名称参数类型可读可写说明
localestring区域参数, 如:zh-Hans-CN。
dateStylestring日期显示格式,取值包括:"long", "short", "medium", "full"。
timeStylestring时间显示格式,取值包括:"long", "short", "medium", "full"。
hourCyclestring时制格式,取值包括:"h11", "h12", "h23", "h24"。
timeZonestring使用的时区(合法的IANA时区ID)。
numberingSystemstring数字系统,取值包括:"adlm", "ahom", "arab", "arabext", "bali", "beng", "bhks", "brah", "cakm", "cham", "deva", "diak", "fullwide", "gong", "gonm", "gujr", "guru", "hanidec", "hmng", "hmnp", "java", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"。
hour12boolean是否使用12小时制。
weekdaystring工作日的显示格式,取值包括:"long", "short", "narrow"。
erastring时代的显示格式,取值包括:"long", "short", "narrow"。
yearstring年份的显示格式,取值包括:"numeric", "2-digit"。
monthstring月份的显示格式,取值包括:"numeric", "2-digit", "long", "short", "narrow"。
daystring日期的显示格式,取值包括:"numeric", "2-digit"。
hourstring小时的显示格式,取值包括:"numeric", "2-digit"。
minutestring分钟的显示格式,取值包括:"numeric", "2-digit"。
secondstring秒钟的显示格式,取值包括:"numeric", "2-digit"。
timeZoneNamestring时区名称的本地化表示。
dayPeriodstring时段的显示格式,取值包括:"long", "short", "narrow"。
localeMatcherstring要使用的区域匹配算法,取值包括:"lookup", "best fit"。
formatMatcherstring要使用的格式匹配算法,取值包括:"basic", "best fit"。

NumberFormat

constructor8+

constructor()

创建数字格式化对象。

系统能力:SystemCapability.Global.I18n

示例:

var numfmt = new Intl.NumberFormat();

constructor

constructor(locale: string | Array<string>, options?: NumberOptions)

创建数字格式化对象。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
localestringArray<string>包含区域设置信息的字符串,包括语言以及可选的脚本和区域。
options[NumberOptions]用于创建数字格式化的选项。

示例:

var numfmt = new Intl.NumberFormat("en-GB", {style:'decimal', notation:"scientific"});

format

format(number: number): string;

格式化数字字符串。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
numbernumber数字对象

返回值:

类型说明
string格式化后的数字字符串

示例:

var numfmt = new Intl.NumberFormat(["en-GB", "zh"], {style:'decimal', notation:"scientific"});
numfmt.format(1223);

resolvedOptions

resolvedOptions(): NumberOptions

获取NumberFormat 对象的格式化选项。

系统能力:SystemCapability.Global.I18n

返回值:

类型说明
[NumberOptions]NumberFormat 对象的格式化选项。

示例:

var numfmt = new Intl.NumberFormat(["en-GB", "zh"], {style:'decimal', notation:"scientific"});
numfmt.resolvedOptions();

NumberOptions

表示设备支持的能力。

系统能力:以下各项对应的系统能力均为SystemCapability.Global.I18n

名称参数类型可读可写说明
localestring区域参数, 如:"zh-Hans-CN"。
currencystring货币单位, 如:"EUR","CNY","USD"等。
currencySignstring货币单位的符号显示,取值包括: "symbol","narrowSymbol","code","name" 。
currencyDisplaystring货币的显示方式,取值包括:"symbol", "narrowSymbol", "code", "name"。
unitstring单位名称,如:"meter","inch",“hectare”等。
unitDisplaystring单位的显示格式,取值包括:"long", "short", "narrow"。
unitUsage8+string单位的使用场景,取值包括:"default", "area-land-agricult", "area-land-commercl", "area-land-residntl", "length-person", "length-person-small", "length-rainfall", "length-road", "length-road-small", "length-snowfall", "length-vehicle", "length-visiblty", "length-visiblty-small", "length-person-informal", "length-person-small-informal", "length-road-informal", "speed-road-travel", "speed-wind", "temperature-person", "temperature-weather", "volume-vehicle-fuel"。
signDisplaystring数字符号的显示格式,取值包括:"auto", "never", "always", "expectZero"。
compactDisplaystring紧凑型的显示格式,取值包括:"long", "short"。
notationstring数字的格式化规格,取值包括:"standard", "scientific", "engineering", "compact"。
localeMatcherstring要使用的区域匹配算法,取值包括:"lookup", "best fit"。
stylestring数字的显示格式,取值包括:"decimal", "currency", "percent", "unit"。
numberingSystemstring数字系统,取值包括:"adlm", "ahom", "arab", "arabext", "bali", "beng", "bhks", "brah", "cakm", "cham", "deva", "diak", "fullwide", "gong", "gonm", "gujr", "guru", "hanidec", "hmng", "hmnp", "java", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"。
useGroupingboolean是否分组显示。
minimumIntegerDigitsnumber表示要使用的最小整数位数,取值范围:1~21。
minimumFractionDigitsnumber表示要使用的最小分数位数,取值范围:0~20。
maximumFractionDigitsnumber表示要使用的最大分数位数,取值范围:1~21。
minimumSignificantDigitsnumber表示要使用的最低有效位数,取值范围:1~21。
maximumSignificantDigitsnumber表示要使用的最大有效位数,取值范围:1~21。

Collator8+

constructor8+

constructor()

创建排序对象。

系统能力:SystemCapability.Global.I18n

示例:

var collator = new Intl.Collator();

constructor8+

constructor(locale: string | Array<string>, options?: CollatorOptions)

创建排序对象。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
localestringArray<string>包含区域设置信息的字符串,包括语言以及可选的脚本和区域。
options[CollatorOptions]用于创建排序对象的选项。

示例:

var collator = new Intl.Collator("zh-CN", {localeMatcher: "lookup", usage: "sort"});

compare8+

compare(first: string, second: string): number

依据Collator的排序策略对两个字符串进行比较。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
firststring进行比较第一个字符串。
secondstring进行比较的第二个字符串。

返回值:

类型说明
number比较结果。当number为负数,表示first排序在second之前;当number为0,表示first与second排序相同;当number为正数,表示first排序在second之后。

示例:

var collator = new Intl.Collator("zh-Hans");
collator.compare("first", "second");

resolvedOptions8+

resolvedOptions(): CollatorOptions

返回Collator对象的属性。

系统能力:SystemCapability.Global.I18n

返回值:

类型说明
[CollatorOptions]返回的Collator对象的属性。

示例:

var collator = new Intl.Collator("zh-Hans");
var options = collator.resolvedOptions();

CollatorOptions8+[]()

表示Collator可设置的属性。

系统能力:以下各项对应的系统能力均为SystemCapability.Global.I18n

名称参数类型可读可写说明
localeMatcherstringlocale匹配算法,取值范围:"best fit", "lookup"。
usagestring比较的用途,取值范围:"sort", "search"。
sensitivitystring表示字符串中的哪些差异会导致非零结果值,取值范围:"base", "accent", "case", "variant"。
ignorePunctuationboolean表示是否忽略标点符号,取值范围:true, false。
collationstring排序规则,取值范围:"big5han", "compat", "dict", "direct", "ducet", "eor", "gb2312", "phonebk", "phonetic", "pinyin", "reformed", "searchjl", "stroke", "trad", "unihan", "zhuyin"。
numericboolean是否使用数字排序,取值范围:true, false。
caseFirststring表示大写、小写的排序顺序,取值范围:"upper", "lower", "false"。

PluralRules8+

constructor8+

constructor()

创建PluralRules对象。

系统能力:SystemCapability.Global.I18n

示例:

var pluralRules = new Intl.PluralRules();

constructor8+

constructor(locale: string | Array<string>, options?: PluralRulesOptions)

创建PluralRules对象。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
localestringArray<string>包含区域设置信息的字符串,包括语言以及可选的脚本和区域。
options[PluralRulesOptions]用于创建单复数对象的选项。

示例:

var pluralRules= new Intl.PluraRules("zh-CN", {"localeMatcher": "lookup", "type": "cardinal"});

select8+

select(n: number): string

返回一个字符串表示该数字的单复数类别。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
nnumber待获取单复数类别的数字。

返回值:

类型说明
string单复数类别,取值包括:"zero","one","two", "few", "many", "others"。

示例:

var pluralRules = new Intl.PluralRules("zh-Hans");
pluralRules.select(1);

PluralRulesOptions8+[]()

表示PluralRules对象可设置的属性。

系统能力:以下各项对应的系统能力均为SystemCapability.Global.I18n

名称参数类型可读可写说明
localeMatcherstringlocale匹配算法,取值包括:"best fit", "lookup"。
typestring排序的类型,取值包括:"cardinal", "ordinal"。
minimumIntegerDigitsnumber表示要使用的最小整数位数,取值范围:1~21。
minimumFractionDigitsnumber表示要使用的最小分数位数,取值范围:0~20。
maximumFractionDigitsnumber表示要使用的最大分数位数,取值范围:1~21。
minimumSignificantDigitsnumber表示要使用的最低有效位数,取值范围:1~21。
maximumSignificantDigitsnumber表示要使用的最大有效位数,取值范围:1~21。

RelativeTimeFormat8+

constructor8+

constructor()

创建相对时间格式化对象。

系统能力:SystemCapability.Global.I18n

示例:

var relativetimefmt = new Intl.RelativeTimeFormat();

constructor8+

constructor(locale: string | Array<string>, options?: RelativeTimeFormatInputOptions)

创建相对时间格式化对象。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
localestringArray<string>包含区域设置信息的字符串,包括语言以及可选的脚本和区域。
options[RelativeTimeFormatInputOptions]用于创建相对时间格式化对象的选项。

示例:

var relativeTimeFormat = new Intl.RelativeTimeFormat("zh-CN", {"localeMatcher": "lookup", "numeric": "always", "style": "long"});

format8+

format(value: number, unit: string): string

依据locale和格式化选项,对value和unit进行格式化。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
valuenumber相对时间格式化的数值。
unitstring相对时间格式化的单位,取值包括:"year", "quarter", "month", "week", "day", "hour", "minute", "second"。

返回值:

类型说明
string格式化后的相对时间。

示例:

var relativetimefmt = new Intl.RelativeTimeFormat("zh-CN");
relativetimefmt.format(3, "quarter")

formatToParts8+

formatToParts(value: number, unit: string): Array<object>

返回一个对象数组,表示可用于自定义区域设置格式的相对时间格式。

系统能力:SystemCapability.Global.I18n

参数:

参数名类型必填说明
valuenumber相对时间格式化的数值。
unitstring相对时间格式化的单位,取值包括:"year", "quarter", "month", "week", "day", "hour", "minute", "second"。

返回值:

类型说明
Array<object>返回可用于自定义区域设置格式的相对时间格式的对象数组。

示例:

var relativetimefmt = new Intl.RelativeTimeFormat("en", {"numeric": "auto"});
var parts = relativetimefmt.format(10, "seconds");

resolvedOptions8+

resolvedOptions(): RelativeTimeFormatResolvedOptions

获取RelativeTimeFormat对象的格式化选项。

系统能力:SystemCapability.Global.I18n

返回值:

类型说明
[RelativeTimeFormatResolvedOptions]RelativeTimeFormat 对象的格式化选项。

示例:

var relativetimefmt= new Intl.RelativeTimeFormat("en-GB");
relativetimefmt.resolvedOptions();

RelativeTimeFormatInputOptions8+[]()

表示RelativeTimeFormat对象可设置的属性。

系统能力:以下各项对应的系统能力均为SystemCapability.Global.I18n

名称参数类型可读可写说明
localeMatcherstringlocale匹配算法,取值包括:"best fit", "lookup"。
numericstring输出消息的格式,取值包括:"always", "auto"。
stylestring国际化消息的长度,取值包括:"long", "short", "narrow"。

RelativeTimeFormatResolvedOptions8+[]()

表示RelativeTimeFormat对象可设置的属性。

系统能力:以下各项对应的系统能力均为SystemCapability.Global.I18n

新文档.png

名称参数类型可读可写说明 HarmonyOS与OpenHarmony鸿蒙文档籽料:mau123789是v直接拿
localestring包含区域设置信息的字符串,包括语言以及可选的脚本和区域。
numericstring输出消息的格式,取值包括:"always", "auto"。
stylestring国际化消息的长度,取值包括:"long", "short", "narrow"。
numberingSystemstring使用的数字系统。

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

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

相关文章

找出字符串中出现最多次数的字符以及出现的次数

str.charAt(i) 是JavaScript中获取字符串中特定位置字符的方法&#xff0c;表示获取当前的字符。 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-wi…

遥感影像信息提取

刘老师&#xff08;副教授&#xff09;&#xff0c;来自双一流重点高校&#xff0c;长期从事GIS/RS/3S技术及其生态环境领域中的应用等方面的研究和教学工作&#xff0c;并参与GIS的二次开发&#xff0c;发表多篇sci论文&#xff0c;具有资深的技术底蕴和专业背景。 专题一&am…

代码审计:Fortify SCA 代码审计神器.

什么是 Fortify SCA 代码审计工具 Fortify 是一个静态的、白盒的软件源代码安全测试工具。它通过内置的五大主要分析引擎&#xff1a;数据流、语义、结构、控制流、配置流等对应用软件的源代码进行静态的分析&#xff0c;通过与软件安全漏洞规则集进行匹配、查找&#xff0c;从…

WiFi蓝牙模块促进传统零售数字化转型:智能零售体验再升级

随着科技的不断发展&#xff0c;数字化转型已经成为了各行各业的必然趋势。在传统零售业中&#xff0c;WiFi蓝牙模块的应用正逐渐推动着行业的数字化转型&#xff0c;为消费者带来更加智能化、便捷化的零售体验。本文MesoonRF美迅物联网将从以下几个方面阐述WiFi蓝牙模块在传统…

企业如何释放生成式AI的业务价值

在生成式AI与大模型技术风起云涌的今天&#xff0c;如何让生成式AI应用在企业落地、真正释放生成式AI业务价值&#xff0c;也成为了广大企业最为关心的话题。 而在这一过程中&#xff0c;生成式AI服务提供商及其合作伙伴&#xff0c;都扮演着非常关键的角色。 积极拥抱生成式AI…

HTML标签(超链接、锚、表格、表单)

HTML的标签2 超链接标签&#xff1a;锚链接&#xff1a;表格标签&#xff1a;表单&#xff1a;输入输出&#xff1a; 超链接标签&#xff1a; 超链接标签&#xff1a;a ​ 属性&#xff1a; ​ href - 链接地址 ​ target - 跳转目标&#xff08;_self在当前卡…

人力资源管理系统,员工管理系统

项目概述 本项目是一款基于Spring BootVueElementUI的人力资源管理系统&#xff0c;有权限管理、财务管理、系统管理、考勤管理等功能模块 获取代码及服务 见闲鱼 技术栈 前端 Vue、Axios、ElementUI、Vue-Router、Vuex、ECharts 后端 Spring Boot、Jwt、MyBatis-Plus、…

王源演唱会火爆开枪

王源演唱会火爆开抢&#xff01;当夜幕降临&#xff0c;繁星点点&#xff0c;无数粉丝的心随着一个名字而狂跳——王源&#xff01;就在昨晚&#xff0c;王源的演唱会门票正式开抢&#xff0c;然而&#xff0c;就在这个激动人心的时刻&#xff0c;猫眼突然停止&#xff0c;让无…

springboot 自带的定时任务

启用springboot 定时任务 在springboot 启动类上增加EnableScheduling 注解 如下 SpringBootApplication EnableScheduling public class SpringApplication {public static void main(String[] args) {SpringApplication.run(SpringApplication.class, args);} }编写定时逻辑…

java 基础教程

第三章&#xff1a;程序控制语句 1.从小打到排序数值 import java.util.Scanner;public class NewTest {// 1.从小打到排序数值public static void main(String[] args) {Scanner s new Scanner(System.in);System.out.println("请输入3个整数&#xff1a;");int …

Microservices with Martin Fowler

Summary The article “Microservices” by Martin Fowler discusses an architectural style for software systems that has been gaining popularity due to its flexibility and scalability. Here’s a summary highlighting the key points: Microservice Architectural…

Unity内制作动画

Unity内制作动画 动画剪辑&#xff08;Animation Clips&#xff09; 创建动画剪辑&#xff1a;在Unity中&#xff0c;可以通过导入动画数据来创建动画剪辑。这些数据可以是FBX、OBJ等格式的3D模型文件&#xff0c;其中包含关键帧动画。 编辑动画剪辑&#xff1a;在Unity的Anim…

最新一站式AI创作中文系统网站源码+系统部署+支持GPT对话、Midjourney绘画、Suno音乐、GPT-4o文档分析等大模型

一、系统简介 本文将介绍最新的一站式AI创作中文系统&#xff08;集成ChatGPTMidjourneySunoStable Diffusion&#xff09;——星河易创AI系统&#xff0c;该系统基于ChatGPT的核心技术&#xff0c;融合了自然语言问答、绘画、音乐、文档分享、图片识别等创作功能&#xff0c;…

牛客热题:数组中出现一次的两个数字

&#x1f4df;作者主页&#xff1a;慢热的陕西人 &#x1f334;专栏链接&#xff1a;力扣刷题日记 &#x1f4e3;欢迎各位大佬&#x1f44d;点赞&#x1f525;关注&#x1f693;收藏&#xff0c;&#x1f349;留言 文章目录 牛客热题&#xff1a;数组中出现一次的两个数字题目链…

集成学习算法笔记

一、引言 在机器学习和数据分析领域&#xff0c;集成学习算法因其能够显著提高模型预测性能而备受关注。然而&#xff0c;任何算法在应用过程中都不可避免地会遇到一些挑战和问题&#xff0c;集成学习算法也不例外。其中&#xff0c;最为常见且关键的两大问题便是欠拟合&#…

全国水系数据(更新到2024年5月)

上海市水系数据地图可视化 水系数据线图层&#xff08;小河/溪流、江/河、运河、下水道/排水管&#xff09; 水系数据面数据&#xff08;水域、水库、河岸、湿地&#xff09; 水系数据字段说明 可视化预览 北京市水系可视化 上海市水系可视化 广州市水系可视化 深圳市水系可视化…

考研数学考到110+分,到底有多难?

很难&#xff01; 大家平时在网上上看到很多人说自己考了130&#xff0c;其实这些人只占参加考研数学人数的极少部分&#xff0c;有个数据可以展示出来考研数学到底有多难&#xff1a; 在几百万考研大军中&#xff0c;能考到120分以上的考生只有2%。绝大多数人的分数集中在30…

Django 注册应用

上一章Django 创建项目及应用-CSDN博客 创建的应用&#xff0c;需要在主项目的myshop.settings.py 文件下注册 INSTALLED_APPS [django.contrib.admin,django.contrib.auth,django.contrib.contenttypes,django.contrib.sessions,django.contrib.messages,django.contrib.sta…

[DDR5 Jedec 4-1] 预充电命令 Precharge

依公知及经验整理&#xff0c;原创保护&#xff0c;禁止转载。 专栏 《深入理解DDR》 1. 预充电&#xff08;Precharge&#xff09;含义 由于SDRAM的寻址具体独占性&#xff0c;因此在进行完读写操作后&#xff0c;若需对同一L-Bank的另一行进行寻址&#xff0c;则必须先关闭原…

如何创建一个线程池,为什么不推荐使用Executors去创建呢?

我们在学线程的时候了解了几种创建线程的方式&#xff0c;比如继承Thread类&#xff0c;实现Runnable接口、Callable接口等&#xff0c;那对于线程池的使用&#xff0c;也需要去创建它&#xff0c;在这里我们提供2种构造线程池的方法&#xff1a; 方法一&#xff1a; 通过Thre…