Qt在connect中使用lambda表达式(最简单)
若想在QT中使用lambda表达式需要在项目文件中的 .pro 中加入 CONFIG += c++11例子:当点击按钮时,打印一个“输出”.需要包含按钮类和打印调试类。 #include <QPushButton> #include <QDebug> QPushButton *but1 = new QPushButton(this); but1->set...