Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 234 Bytes

debug.md

File metadata and controls

18 lines (11 loc) · 234 Bytes

调试

Qt
qDebug(format,params);//C: printf(format,params)

#include <QDebug>
qDebug() << string << endl ; //C++: cout << 注意 q 为小写,特殊,跟别的类不同

iOS
NSLog(format,params);