Difference between revisions of "Qt4/Qt-Creator Hello World Console Mode"
(→Steps) |
|||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
--[[User:Thiebaut|D. Thiebaut]] 01:49, 2 June 2010 (UTC) | --[[User:Thiebaut|D. Thiebaut]] 01:49, 2 June 2010 (UTC) | ||
---- | ---- | ||
+ | <div style="text-align:right;"> | ||
+ | <google1 style="2"></google1> | ||
+ | </div> | ||
+ | |||
{| | {| | ||
| width="40%" | __TOC__ | | width="40%" | __TOC__ | ||
Line 38: | Line 42: | ||
* Simply edit the code as follows: | * Simply edit the code as follows: | ||
− | + | <br /> | |
− | <source lang=" | + | <br /> |
+ | <source lang="cpp"> | ||
#include <QtCore/QCoreApplication> | #include <QtCore/QCoreApplication> | ||
#include <QDebug> | #include <QDebug> | ||
Line 45: | Line 50: | ||
int main(int argc, char *argv[]) | int main(int argc, char *argv[]) | ||
{ | { | ||
− | QCoreApplication a(argc, argv); | + | //QCoreApplication a(argc, argv); |
qDebug() << "hello world!" << endl; | qDebug() << "hello world!" << endl; | ||
//return a.exec(); | //return a.exec(); | ||
Line 51: | Line 56: | ||
</source> | </source> | ||
+ | |||
+ | <br /> | ||
=Running the program= | =Running the program= | ||
Line 69: | Line 76: | ||
Makefile helloWorld_console.pro main.o | Makefile helloWorld_console.pro main.o | ||
helloWorld_console* main.cpp | helloWorld_console* main.cpp | ||
− | + | ||
$: '''./helloWorld_console''' | $: '''./helloWorld_console''' | ||
hello world! | hello world! | ||
+ | |||
+ | =Variants= | ||
+ | |||
+ | Here are several other variants of the main program. | ||
+ | |||
+ | ==Variant #1== | ||
+ | <br /> | ||
+ | <br /> | ||
+ | <source lang="cpp"> | ||
+ | #include <iostream> | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | std::cout << "\nHello World!\n"; | ||
+ | } | ||
+ | |||
+ | </source> | ||
+ | |||
+ | <br /> | ||
+ | |||
+ | ==Variant #2== | ||
+ | |||
+ | <br /> | ||
+ | <br /> | ||
+ | <source lang="cpp"> | ||
+ | #include <QTextStream> | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | QTextStream out(stdout); | ||
+ | out << "\nHello World!\n"; | ||
+ | } | ||
+ | </source> | ||
+ | <br /> | ||
+ | <br /> | ||
+ | |||
+ | [[Category:Tutorials]][[Category:C++]][[Category:Qt]] |
Latest revision as of 08:05, 21 June 2011
--D. Thiebaut 01:49, 2 June 2010 (UTC)
Setup
We assume that you have installed Qt Creator and Qt 4 on your Mac (or Windows/Linux platform).
Steps
- Start Qt Creator
- File/New File or Project
- Pick Qt4 Console Application
- Pick a name for the project directory, say, helloWorld_console
- Pick a full path for the directory, say, /Users/yourName/Qt4/
- Accept the default module list
- click Done
- You have a new project with a main.cpp file and a helloWorld_console.pro file.
main.cpp
- Simply edit the code as follows:
#include <QtCore/QCoreApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
//QCoreApplication a(argc, argv);
qDebug() << "hello world!" << endl;
//return a.exec();
}
Running the program
Running from inside Qt Creator
- Simply type Apple-R to run the program.
- Verify that you get an output in the Application Output window.
hello world!
Running from the Terminal
- Open a terminal window, and cd to the directory containing the project, and run the newly created file:
$: cd /Users/yourName/Qt4/helloWorld_console $: ls Makefile helloWorld_console.pro main.o helloWorld_console* main.cpp $: ./helloWorld_console hello world!
Variants
Here are several other variants of the main program.
Variant #1
#include <iostream>
int main()
{
std::cout << "\nHello World!\n";
}
Variant #2
#include <QTextStream>
int main()
{
QTextStream out(stdout);
out << "\nHello World!\n";
}