Новый синтаксис signal/slot, с проверкой на стадии компиляции.
C++ (Qt)connect(ui->spinBox, static_cast<void(QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &MySuperClass::setFactor);
C++ (Qt)connect(ui->comboBox, &QComboBox::currentTextChanged, [this](const QString & text) { updateText(); });
T & operator[] ( int i )const T & operator[] ( int i ) const
void itemChanged(T& item);void itemChanged(const T& item) const;
C++ (Qt)struct object{ void some_method() const { ++val; } mutable int val;};