SystemInformation QML Type

Provides information about the system. 更多...

导入语句: import QtCore
Since: Qt 6.4
继承:

QtObject

详细描述

The SystemInformation singleton type provides information about the system, using a similar API to QSysInfo , where each function in QSysInfo is available as a property:

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 .