Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. question in signals and slots
Qt 6.11 is out! See what's new in the release blog

question in signals and slots

Scheduled Pinned Locked Moved Solved General and Desktop
2 Posts 2 Posters 376 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • MihanM Offline
    MihanM Offline
    Mihan
    wrote on last edited by Mihan
    #1

    Hi all
    As I know , a value coulde be changed in other function like:

    void add(int &a)
    {
        a++;
    }
    
    int main()
    {
        int A = 0;
        add(&A);
        //then A will be 1;
    }
    

    Now when I send a value by quote( & ), then change it in the slot:

    class calculate:public QObject
    {
        Q_OBJECT
    public:
        calculate();
    
    signals: 
        void add(int &);
    public slots:
        void on_add(int &number);
    };
    
    void calculate::on_add(int &a)
    {
        a++;
    }
    
    
    calculate::calculate()
    {
        int A = 0;
        connect(this, SIGNAL(add(int &)), this , SLOT(on_add(int &)));
        
        emit add(&A);
        
       //then A will be 1;
    }
    

    Is that right?

    Best regards.
    Mihan

    1 Reply Last reply
    0
    • Christian EhrlicherC Offline
      Christian EhrlicherC Offline
      Christian Ehrlicher
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Since signals and slots can be asynchronous you can't pass a non-const reference to a slot.

      Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
      Visit the Qt Academy at https://academy.qt.io/catalog

      1 Reply Last reply
      6

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved