complex calculations with qt
Hello again!
If i want to use the data entered in a series of lineedits to perform some kind o "complex" calculations what is there for me?
- The C++ stuff
- Something that qt offers that i don't know yet ;)
Just asking before starting the wrong way.
Thanks
Re: complex calculations with qt
QtConcurrent maybe? It depends what kind of calculations we are talking about.
Re: complex calculations with qt
Not this "complex" :)
I will start with basic arithmetics.
By the way ... in C++ when i want to round a number to an integer i use something like:
Code:
double x = 2.7;
int y = x+ 0.5;
In this kind of situations we still have to use some C++ background to solve some specific problems, right?
Re: complex calculations with qt
Qt is not a programming language, it is a set of C++ libraries, so whatever you do with Qt, you still use C++. By the way, there is qRound() :)
Re: complex calculations with qt
Right :rolleyes:
<QtGlobal> - Global Qt Declarations
I better take some time browsing all the classes before i make any more inocent questions like this :o
Re: complex calculations with qt
That's ok, don't worry. The forum is for asking questions. Of course I strongly encourage to reading the docs more often :)