【Qt】qDebug


qDebug 是 Qt 所提供的 debug 函式。

【Example】

#include <QtGui/QApplication>
#include <QtDebug>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    qDebug() << "Show this via qDebug\n";
    return a.exec();
}

【Result】

image

【說明】

  1. 基本用法
    qDebug("Items in list: %d", myList.size());
  2. 要 include <QtDebug>
    qDebug() << "Brush:" << myQBrush << "Other value:" << i;

【參考】

 

Ed32. Copyright 2008 All Rights Reserved Revolution Two Church theme by Brian Gardner Converted into Blogger Template by Bloganol dot com