C++ Qt 29 - QThread part 2 the Priority

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

ความคิดเห็น • 15

  • @somaboseroychoudhury4483
    @somaboseroychoudhury4483 9 ปีที่แล้ว +13

    I like your tutorials very much. They are short and to the point. I have been following all of them. It really helped to improve my QT understanding.

  • @maxx666mayhem
    @maxx666mayhem 8 ปีที่แล้ว

    Yup...Really good tutorials mate... Learned Qthreads so easily with this series... Thanks a lot for sharing..

  • @esiron1
    @esiron1 12 ปีที่แล้ว

    Thank you very much, I couldn't fully grasp the concept of Threads until I saw your video :)

  • @cypressmaccarthy8132
    @cypressmaccarthy8132 8 ปีที่แล้ว +1

    TKS bro,love your tutorial that quiet easy to understand.

  • @VolcanSpock
    @VolcanSpock 12 ปีที่แล้ว

    @blockheadjr I think priority settings works only for non-multiprocessor system. This settings must show how many ticks of processer can any of process have.
    For multiprocessor system threads can work indepence if they placed on a different core

  • @kaushik1001
    @kaushik1001 5 ปีที่แล้ว

    Great Tutorial, thanks for making it.

  • @blockheadjr
    @blockheadjr 13 ปีที่แล้ว +1

    Something I noticed in your example, and when I repeat the exercise at my desktop: Essentially the priority option really isn't effective. In your last example, with thread 3 finishing last (in accordance with priority), I noticed as you scrolled up that thread 1 (highest priority) did not finish before thread 2 (at 2:34 in the video). When I ran the same test, the thread with the highest priority completed last. Any insight into why that is?

  • @VoidRealms
    @VoidRealms  14 ปีที่แล้ว

    @iRouRoui Thanks, and really it depends on the amount of traffic and how the game is designed....but from my use with Qt I think it is as capable if not MORE then other frameworks

  • @AhmedShbli
    @AhmedShbli 13 ปีที่แล้ว

    Thanks man!!

  • @deathinfront
    @deathinfront 11 ปีที่แล้ว

    Will setting the thread priority on a cpu heavy process to highest affect form responsiveness?

  • @ryokanzato
    @ryokanzato 12 ปีที่แล้ว

    thx alot , you are my hero .. >,

  • @ankitthakar2671
    @ankitthakar2671 5 ปีที่แล้ว

    In my case thread 1 comes at last though I have set thread 1 Highest Priority

  • @qzorn4440
    @qzorn4440 9 ปีที่แล้ว

    QThread could replace a simple event timer ? Thanks. 8=\ . .

  • @doug65536
    @doug65536 11 ปีที่แล้ว

    "Gonna take a LONG time". Sorry, that's completely wrong, lower priority doesn't slow it down. A naive person watching your video will try to make their program "fast" by using all highest priority.