class QBluetoothHostInfo#

QBluetoothHostInfo 类封装了本地 QBluetooth 设备的详情。 更多信息

概要#

方法#

注意

本文档可能包含自动从C++转换为Python的代码片段。我们始终欢迎对片段翻译的贡献。如果您发现翻译有问题,也可以通过在 https:/bugreports.qt.io/projects/PYSIDE 上创建工单的方式告诉我们。

详细说明#

此类包含本地蓝牙设备的名称和地址。

__init__()#

构建一个空的 QBluetoothHostInfo 对象。

__init__(other)
参数:

otherQBluetoothHostInfo

构建一个新的 QBluetoothHostInfo,它是 other 的副本。

address()#
返回类型:

QBluetoothAddress

返回作为 QBluetoothAddress 的蓝牙地址。

参见

setAddress()

name()#
返回类型:

str

返回主机信息对象的用户可见名称。

参见

setName()

__ne__(b)#
参数:

bQBluetoothHostInfo

返回类型:

bool

如果 ab 不相等,则返回 true,否则返回 false

__eq__(b)#
参数:

bQBluetoothHostInfo

返回类型:

bool

如果 ab 相等,则返回 true,否则返回 false

setAddress(address)#
参数:

addressQBluetoothAddress

设置该蓝牙主机信息对象的蓝牙地址。

参见

address()

setName(name)#
参数:

name – str

设置主机信息对象的名字。

参见

name()