Qt使用总结

qDebug使用总结

qDebug有两种使用方法

1、类似C语言的使用方法

eg:qDebug("Items in list: %d", myList.size());

qDebug("Items in list: %s", myList.toLatin1());

需要注意的是在输出字符串的时候需要添加toLatin1();

2、类似于C++使用方法

eg: qDebug() << "Brush:" << myQBrush << "Other value:" <<i;

此方法需要注意使用过程中需要添加头文件 #include <QtDebug>

你可能感兴趣的:(Qt使用总结)