Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のコードでは
#include <QSystemDeviceInfo> QSystemDeviceInfo devInfo; if (devInfo.productName != "RM-680") { /* do something */}
ビルド中にエラーが発生します:
error: invalid use of member (did you forget the '&' ?)
私は何を間違っていますか?
productNameメンバー関数です。あなたはそれを呼び出す必要があります。
productName
if (devInfo.productName() != "RM-680")