Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im using Qt4 and c++ for making some programs in computer graphics. I need to be able to print some varaibles in my console in runtime, not debugging, but cout doesn't seem to work even if I add the libraries. Is there a way to do this?

share|improve this question
Can you elaborate on cout not working because that should certainly work. Do you get a compile error. Can you show a code example of cout that isn't working for you? Also explain how you are running the application. Are you running it from a console or from within an IDE and not seeing output to its output window? – Arnold Spence Oct 7 '10 at 22:48

3 Answers

up vote 21 down vote accepted
qDebug() << "message";
share|improve this answer
I asked ,while not debugging, there must be a function that allows me to write messages in console during runtime, not during debugging. – Zloy Smiertniy Oct 7 '10 at 22:19
6  
Despite its name, that function is not related to debugging with a debugger. It is a convenience function that Qt provides for sending output to stderr that can be removed from compilation with a define. So it is an alternative for achieving output to the console at runtime. – Arnold Spence Oct 7 '10 at 23:23
Thank you all a lot, I'm using this :). I guess there is no need then for me to write any of the code I used. Thanks! This has been super usefull. – Zloy Smiertniy Oct 14 '10 at 0:54
2  
#include <QDebug> – ducky Sep 27 '12 at 15:22
4  
Please don't use qDebug for all console output. Only use it for true debug prints use qWarning, qCritical and qFatal for errors and warnings. Because qDebug statements can be removed when compiling with QT_NO_DEBUG_OUTPUT to save performance and stop the application from cluttering up the output. – JustMaximumPower Oct 17 '12 at 13:14

Add this to your project file:

CONFIG += console
share|improve this answer

What variables do you want to print? If you mean QStrings, those need to be converted to c-Strings. Try:

std::cout << myString.toAscii().data();
share|improve this answer
When I do this, I get cout is not a member of 'std' .. – PCoder Aug 13 '12 at 8:29
1  
@CoderaPurpa You need to add #include <iostream> – Sebastian Negraszus Aug 16 '12 at 11:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.