zoukankan      html  css  js  c++  java
  • Qt中连接到同一signal的多个slots的执行顺序问题(现在是看连接顺序,以前是无序的)

    • in the order they have been connected

    起源

    前些天忘记在哪儿讨论过这个问题,今天在csdn又看到有网友问这个问题,而其他网友却无一例外的给出了“无序”这个答案。

    Manual

    Qt的问题,当manual中有明确文字说明时,我们应该以Qt的manual为准:

    http://doc.qt.nokia.com/4.8/signalsandslots.html

    If several slots are connected to one signal, the slots will be executed one after the other, in the order they have been connected, when the signal is emitted.

    或者 http://doc.qt.nokia.com/4.8/qobject.html

    If a signal is connected to several slots, the slots are activated in the same order as the order the connection was made, when the signal is emitted.

    恩,说的很明确,各个槽按照被connect的顺序被执行【注意,在队列模式时,是指相应的事件被post,仍不保证槽被按照该顺序执行】。

    可是,为什么很多人认为是无序呢?(除了前面提及的,还有什么其他因素么?)

    翻翻Qt4.5以及该版本之前的manual,可以看到

    http://doc.qt.nokia.com/4.5/signalsandslots.html

    If several slots are connected to one signal, the slots will be executed one after the other, in an arbitrary order, when the signal is emitted.

    以及 http://doc.qt.nokia.com/4.5/qobject.html

    If a signal is connected to several slots, the slots are activated in an arbitrary order when the signal is emitted.

    网络上以及书籍中的大部分资料都是Qt4.6之前的,故尔 ...

    源码

    恩,尝试看过元对象系统这部分源码的网友对这部分不会觉得陌生。如果没看过,可以瞅瞅这个Qt Meta Object system 学习(三)

    • QObject::connect() 最终将 信号和槽的索引值放置到一个Connection列表中

     

    QObjectPrivate::Connection *c = new QObjectPrivate::Connection; 
        c->sender = s; 
        c->receiver = r; 
        c->method = method_index; 
        c->connectionType = type; 
        c->argumentTypes = types; 
        c->nextConnectionList = 0; 
    QObjectPrivate::get(s)->addConnection(signal_index, c); 
    • 信号的发射,就是借助QMetaObject::activate() 来依次处理前面那个Connection列表总的项

     

    do { 
            QObjectPrivate::Connection *c = connectionLists->at(signal_index).first; 
            if (!c) continue; 
            // We need to check against last here to ensure that signals added  
            // during the signal emission are not emitted in this emission. 
            QObjectPrivate::Connection *last = connectionLists->at(signal_index).last;
     
           do { 
                if (!c->receiver) 
                    continue; 
                 QObject * const receiver = c->receiver;

    在该过程中:

    • 如果是直接连接,则通过 QMetaObject::metacall() 直接调用
    • 如果是队列连接,则post一个QMetaCallEvent事件,稍后通过事件派发,该事件的处理函数负责通过 QMetaObject::metacall() 调用相应的槽函数【注意,小心此时槽函数的执行顺序】

    注意:此处的代码片段是Qt4的,而Qt5.0 中由于引入了新式的信号和槽语法,对应部分源码有较大变化。

    参考

    http://blog.csdn.net/dbzhang800/article/details/7100309

  • 相关阅读:
    软件设计项目进展18 2019/9/4
    软件设计项目进展17 2019/9/4
    软件设计项目进展16 2019/9/3
    将mcomaster配置以apache运行
    mcollective的web控制台---mcomaster搭建
    check_mk自定义监控增加性能数据图形展示
    check_mk自定义监控实践之powershell
    搭建puppet dashboard及遇到的问题
    通过MCollective实现puppet向windows的推送
    利用puppet管理配置IIS
  • 原文地址:https://www.cnblogs.com/findumars/p/6402557.html
Copyright © 2011-2022 走看看