MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
In this section of code, after : what does
QMainWindow(parent),
ui(new Ui::MainWindow)
mean?
|
|
|
This is actually a C++ question. What you're looking at are called initialization lists. The |
|||
|
By way of further explanation, observe that the class generated by the user interface compiler is also called (in this case) An alternative design is to merge the identity of the two |
||||
|
|
These two lines are the so-called initialization list and are executed at "creation" time of each instance of this class. Each class inheriting another should contain a call to the superclass' constructor in this list. You could also write:
which one could find better readable. But using an initialization list is slightly faster and is being optimized by the compiler. Note that these lists can only be used in constructors and you cannot call any functions of the object - because it doesn't "live" yet. But you may set the value of some attributes and refer to them in following statements (to avoid code redundancy for example), like in the following example:
Note that most compilers give you a warning if the order of the members in your initialization list doesn't match the order in the class definition. |
|||
|
|