QDebug 运算符重载 ---怎样通过 qDebug打印一个对象

QDebug << 运算符重载 ---怎样通过 qDebug()打印一个对象QDebug& operator<<(QDebug& dbg, const QModule* p_module)
{
    
    dbg << (QGraphicsItem*)p_module << " Id " << (int)p_module->m_id << "key " << p_module->m_nModuleKey;
    return dbg;
}

你可能感兴趣的:(Qt,Qt)