SystemInformation QML Type

システムに関する情報を提供する。詳細...

Import Statement: import QtCore
Since: Qt 6.4
Inherits:

QtObject

詳細説明

SystemInformation シングルトン型は、システムに関する情報を提供する。QSysInfo と同様の API を使用し、QSysInfo の各関数をプロパティとして利用できる:

if (SystemInformation.wordSize === 64) {
    console.log("64 bit")
} else {
    console.log("32 bit")
}

if (SystemInformation.byteOrder === SystemInformation.Little) {
    console.log("Little endian")
} else {
    console.log("Big endian")
}

console.log("Currently running on " + SystemInformation.prettyProductName)

QSysInfoも参照してください

ここに含まれるドキュメントのコントリビューションは、それぞれの所有者の著作です。 本書で提供されるドキュメントは、Free Software Foundation が発行したGNU Free Documentation License version 1.3に基づいてライセンスされています。 Qtおよびそれぞれのロゴは、フィンランドおよびその他の国におけるThe Qt Company Ltd.の 商標です。その他すべての商標は、それぞれの所有者に帰属します。