Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Special Interest Groups
  3. C++ Gurus
  4. Smart pointers in Qt
Forum Updated to NodeBB v4.3 + New Features

Smart pointers in Qt

Scheduled Pinned Locked Moved C++ Gurus
34 Posts 12 Posters 30.0k 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.
  • S Offline
    S Offline
    situ117
    wrote on last edited by
    #1

    Hello,

    I was reading about QSharedPointer in Qt. But I've not seen it much in use in source code of Examples and Demos. If we have smart pointers in Qt, why old C type pointers are preferred ?

    1 Reply Last reply
    0
    • S Offline
      S Offline
      secretNinja
      wrote on last edited by
      #2

      "This is quite informative on the subject.":http://stackoverflow.com/questions/2454214/is-it-a-good-practice-to-always-use-smart-pointers

      1 Reply Last reply
      0
      • L Offline
        L Offline
        leon.anavi
        wrote on last edited by
        #3

        [quote author="situ117" date="1304279927"]
        I was reading about QSharedPointer in Qt. But I've not seen it much in use in source code of Examples and Demos. [/quote]

        There are not so much Qt examples and demos with QSharedPointer because of the general concept for memory management in Qt using parent–child hierarchy of QObject.

        A good article about available smart pointers in Qt and their purposes is: "Count with me: how many smart pointer classes does Qt have?":http://labs.qt.nokia.com/2009/08/25/count-with-me-how-many-smart-pointer-classes-does-qt-have/

        Cheers,
        Leon

        http://anavi.org/

        1 Reply Last reply
        0
        • K Offline
          K Offline
          koahnig
          wrote on last edited by
          #4

          Thanks for starting the topic. Especially the link presented by Leon is very informative.
          Quite clear is the rationale of Qt for using their own smart pointers. There is no way to rely on external definitions as boost as long as these are not standard part of almost all compilers.
          However, I am wondering, if there are strong arguments for switching to Qt's smart pointers when already using boost shared_ptr?
          Any opinion of someone knowing the details of both implementations?

          Vote the answer(s) that helped you to solve your issue(s)

          1 Reply Last reply
          0
          • F Offline
            F Offline
            Franzk
            wrote on last edited by
            #5

            Both the QSharedPointer and the boost shared_ptr implement the same principle. There is no good reason to switch to one or the other unless you plan on ditching either of the libraries in the long run.

            "Horse sense is the thing a horse has which keeps it from betting on people." -- W.C. Fields

            http://www.catb.org/~esr/faqs/smart-questions.html

            1 Reply Last reply
            0
            • L Offline
              L Offline
              leon.anavi
              wrote on last edited by
              #6

              [quote author="koahnig" date="1304313628"]Thanks for starting the topic. Especially the link presented by Leon is very informative.[/quote]

              I am glad that I was able to help :)

              [quote author="Franzk" date="1304316838"]Both the QSharedPointer and the boost shared_ptr implement the same principle. There is no good reason to switch to one or the other unless you plan on ditching either of the libraries in the long run.[/quote]

              I also share the opinion that sharing frameworks is not good idea. Qt is excellent framework (of course so is Boost) and Qt has all needed tools to create whatever you need.

              Best regards,
              Leon

              http://anavi.org/

              1 Reply Last reply
              0
              • K Offline
                K Offline
                koahnig
                wrote on last edited by
                #7

                @Franzk and @Leon, thanks for sharing your opinion on this. Best regards koahnig

                Vote the answer(s) that helped you to solve your issue(s)

                1 Reply Last reply
                0
                • D Offline
                  D Offline
                  Duck
                  wrote on last edited by
                  #8

                  The question is rather "why would you want to use smart pointers if plain pointers are completely sufficient". Smart pointers do not come for free, both time- and space-wise. Some operations are as quick/as small as for plain pointers, some are significantly more expensive. No need to pay that cost if there is no gain.

                  1 Reply Last reply
                  0
                  • G Offline
                    G Offline
                    giesbert
                    wrote on last edited by
                    #9

                    [quote author="Duck" date="1309378118"]The question is rather "why would you want to use smart pointers if plain pointers are completely sufficient". Smart pointers do not come for free, both time- and space-wise. Some operations are as quick/as small as for plain pointers, some are significantly more expensive. No need to pay that cost if there is no gain.
                    [/quote]

                    It depends what you do if plain pointer are sufficient. YOu can surely always use plain pointers and do everything on your own, but why should you do that?

                    E.g. shared pointers: The objects are deleted, if the last shared pointer goes out of scope. If you do that with plain pointers, you have to implement ref counting etc. And there are many more types of shared pointers, e.g. QPOinter which goes to 0 if the object is destroyed from somewhere etc.

                    From my opinion, smart pointer are nearly always good to use!

                    Nokia Certified Qt Specialist.
                    Programming Is Like Sex: One mistake and you have to support it for the rest of your life. (Michael Sinz)

                    1 Reply Last reply
                    0
                    • A Offline
                      A Offline
                      andre
                      wrote on last edited by
                      #10

                      Then again, C++ 0x allows compilers to generate garbage collection. If you have that, do you still need smart pointers for that?

                      Obviously, the problem is that it is optional: "implementation dependent". That means that a library like Qt can't rely on it.

                      Smart pointers are not always a good idea to use, but IMHO, they often are.

                      1 Reply Last reply
                      0
                      • K Offline
                        K Offline
                        koahnig
                        wrote on last edited by
                        #11

                        [quote author="Duck" date="1309378118"]The question is rather "why would you want to use smart pointers if plain pointers are completely sufficient". Smart pointers do not come for free, both time- and space-wise. Some operations are as quick/as small as for plain pointers, some are significantly more expensive. No need to pay that cost if there is no gain.
                        [/quote]

                        The expence of smart pointers is certainly a reason to think twice.

                        [quote author="Andre" date="1309423297"]
                        Smart pointers are not always a good idea to use, but IMHO, they often are.[/quote]
                        Do you have an example?
                        Certainly it is not always the first choice to use pointers respectively smart pointers as already discussed above. I am wondering, if there are further situations where they are really not a good choise?

                        Vote the answer(s) that helped you to solve your issue(s)

                        1 Reply Last reply
                        0
                        • A Offline
                          A Offline
                          andre
                          wrote on last edited by
                          #12

                          [quote author="koahnig" date="1309424953"]
                          [quote author="Andre" date="1309423297"]
                          Smart pointers are not always a good idea to use, but IMHO, they often are.[/quote]
                          Do you have an example?
                          Certainly it is not always the first choice to use pointers respectively smart pointers as already discussed above. I am wondering, if there are further situations where they are really not a good choise?
                          [/quote]

                          One example may be the case where you store lots of pointers to objects in a container class. But, it all depends on your use case.

                          1 Reply Last reply
                          0
                          • G Offline
                            G Offline
                            giesbert
                            wrote on last edited by
                            #13

                            If you are in a time critical, real time issue, the indirection you get and perhaps the additional things to do, may hurt, as they cost time.

                            But in mobile and desktop apps, I think, it does not hurt.

                            Nokia Certified Qt Specialist.
                            Programming Is Like Sex: One mistake and you have to support it for the rest of your life. (Michael Sinz)

                            1 Reply Last reply
                            0
                            • K Offline
                              K Offline
                              koahnig
                              wrote on last edited by
                              #14

                              [quote author="Andre" date="1309426243"]
                              One example may be the case where you store lots of pointers to objects in a container class. But, it all depends on your use case.
                              [/quote]

                              That is a good example to be careful with smart pointers. If somehow the object/container survives so does the smart pointer and the allocated memory.
                              So a conclusion would be:
                              watch out for run-away containers ;-)

                              [quote author="Gerolf" date="1309426319"]
                              But in mobile and desktop apps, I think, it does not hurt.[/quote]

                              Well, if you are not careful enough, the run-away container may get you ultimately. Several GBs of memory are en vogue today, but ultimately you can drain any big pond (as long as you do not call it ocean) ;-)

                              Vote the answer(s) that helped you to solve your issue(s)

                              1 Reply Last reply
                              0
                              • A Offline
                                A Offline
                                andre
                                wrote on last edited by
                                #15

                                [quote author="koahnig" date="1309429658"]

                                Well, if you are not careful enough, the run-away container may get you ultimately. Several GBs of memory are en vogue today, but ultimately you can drain any big pond (as long as you do not call it ocean) ;-)
                                [/quote]
                                Off topic:
                                See "here":http://www.google.nl/search?hl=nl&xhr=t&q=lake+aral&cp=0&nord=1&bav=on.2,or.r_gc.r_pw.&biw=1280&bih=963&ion=1&um=1&ie=UTF-8&tbm=isch&source=og&sa=N&tab=wi for how such a thing looks...

                                1 Reply Last reply
                                0
                                • G Offline
                                  G Offline
                                  giesbert
                                  wrote on last edited by
                                  #16

                                  [quote author="koahnig" date="1309429658"]
                                  [quote author="Gerolf" date="1309426319"]
                                  But in mobile and desktop apps, I think, it does not hurt.[/quote]

                                  Well, if you are not careful enough, the run-away container may get you ultimately. Several GBs of memory are en vogue today, but ultimately you can drain any big pond (as long as you do not call it ocean) ;-)

                                  [/quote]

                                  But itÄs the same with pure pointers. You have to watch out to delete allocated memory. No chance to get around this problem, this or that way.

                                  Where I love smart pointers is if you have some function that needs to allocate memory to read some values from Windows API where yxou have to pre allocate the memory. Just use some auto pointers and it will be destructed correctly when you leave the function, even in exception handling cases.

                                  Nokia Certified Qt Specialist.
                                  Programming Is Like Sex: One mistake and you have to support it for the rest of your life. (Michael Sinz)

                                  1 Reply Last reply
                                  0
                                  • K Offline
                                    K Offline
                                    koahnig
                                    wrote on last edited by
                                    #17

                                    [quote author="Gerolf" date="1309430523"]
                                    But itÄs the same with pure pointers. You have to watch out to delete allocated memory. No chance to get around this problem, this or that way.

                                    Where I love smart pointers is if you have some function that needs to allocate memory to read some values from Windows API where yxou have to pre allocate the memory. Just use some auto pointers and it will be destructed correctly when you leave the function, even in exception handling cases.[/quote]

                                    Yes! However, one should be aware that auto_ptr does not mean automatically no problem at all.
                                    I am certainly in favor of shared_ptr .

                                    [quote author="Andre" date="1309430218"]
                                    Off topic:
                                    See "here":http://www.google.nl/search?hl=nl&xhr=t&q=lake+aral&cp=0&nord=1&bav=on.2,or.r_gc.r_pw.&biw=1280&bih=963&ion=1&um=1&ie=UTF-8&tbm=isch&source=og&sa=N&tab=wi for how such a thing looks...
                                    [/quote]

                                    :-D A good example !

                                    Vote the answer(s) that helped you to solve your issue(s)

                                    1 Reply Last reply
                                    0
                                    • D Offline
                                      D Offline
                                      Duck
                                      wrote on last edited by
                                      #18

                                      [quote author="Gerolf" date="1309414170"]
                                      It depends what you do if plain pointer are sufficient. YOu can surely always use plain pointers and do everything on your own, but why should you do that?
                                      [/quote]

                                      Because they are cheap and fast.

                                      [quote author="Gerolf" date="1309414170"]
                                      E.g. shared pointers: The objects are deleted, if the last shared pointer goes out of scope. If you do that with plain pointers, you have to implement ref counting etc. And there are many more types of shared pointers, e.g. QPOinter which goes to 0 if the object is destroyed from somewhere etc.

                                      From my opinion, smart pointer are nearly always good to use![/quote]

                                      From my point of view it's pretty much the opposite. Shared pointer impose overhead in lots of cases, so using them without justification violates the "don't pay if you don't need it" principle.

                                      Often enough there appears to be a "need to use SharedPointers" to "fix" "issues" that arise typically from a design that does not have a clear concept of ownership.

                                      Fortunately enough, in a QObject based world that's rather rare as most QObjects do have an owner. No need for any "manual" management here either.

                                      Shared

                                      1 Reply Last reply
                                      0
                                      • G Offline
                                        G Offline
                                        gbonnema
                                        wrote on last edited by
                                        #19

                                        Now that smart pointers are an integral part of C++ 2011, does that change any of the considerations here?
                                        Specifically, does it render the Qt smart pointers obsolete?

                                        P.S. I just started C++ and Qt and I am very curious how to apply my freshly learnt C++ 2011 knowledge in combination with Qt.

                                        My gut feeling says that C++ smart pointers will eventually override the QT and Boost smart pointers, so for new programs the C++ pointers might be best.

                                        Anyone comments?

                                        1 Reply Last reply
                                        0
                                        • G Offline
                                          G Offline
                                          gbonnema
                                          wrote on last edited by
                                          #20

                                          Now that smart pointers are an integral part of C++ 2011, does that change any of the considerations here?
                                          Specifically, does it render the Qt smart pointers obsolete?

                                          P.S. I just started C++ and Qt and I am very curious how to apply my freshly learnt C++ 2011 knowledge in combination with Qt.

                                          My gut feeling says that C++ smart pointers will eventually override the QT and Boost smart pointers, so for new programs the C++ pointers might be best.

                                          Anyone comments?

                                          1 Reply Last reply
                                          0

                                          • Login

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