At the following web page: http://web.mit.edu/qt-dynamic/www/tu...torial-t2.html

In:

Qt Code:
  1. QObject::connect(&quit, SIGNAL(clicked()), &app, SLOT(quit()));
To copy to clipboard, switch view to plain text mode 

Why is & used with quit and app? Cannot we use quit and app without &?

Thanks.