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. QString::toShort problem
Forum Updated to NodeBB v4.3 + New Features

QString::toShort problem

Scheduled Pinned Locked Moved Unsolved General and Desktop
58 Posts 7 Posters 26.5k Views 3 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.
  • jsulmJ jsulm

    @JonB said in QString::toShort problem:

    In that case, try passing something like 0xFFFFFFFE or 0xFFFFFFFFFFFFFFFE for the string to toShort()

    Come on - these numbers are NOT short. We should stay on topic.

    JonBJ Offline
    JonBJ Offline
    JonB
    wrote on last edited by JonB
    #21

    @jsulm said in QString::toShort problem:

    Come on - these numbers are NOT short. We should stay on topic.

    I beg your pardon!? I am totally on topic. I was replying to @J-Hilk 's display of the code of QString::toShort(). Did you try what I suggested rather than dismissing it as OT? In view of the code shown, I am trying to suggest what 0xFFF.... string toShort() will accept as representing a negative number....

    jsulmJ 1 Reply Last reply
    0
    • JKSHJ Offline
      JKSHJ Offline
      JKSH
      Moderators
      wrote on last edited by
      #22

      Nobody wants to try my exercises... (sad face)

      Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

      1 Reply Last reply
      1
      • JonBJ JonB

        @jsulm said in QString::toShort problem:

        Come on - these numbers are NOT short. We should stay on topic.

        I beg your pardon!? I am totally on topic. I was replying to @J-Hilk 's display of the code of QString::toShort(). Did you try what I suggested rather than dismissing it as OT? In view of the code shown, I am trying to suggest what 0xFFF.... string toShort() will accept as representing a negative number....

        jsulmJ Offline
        jsulmJ Offline
        jsulm
        Lifetime Qt Champion
        wrote on last edited by
        #23

        @JonB Passing 0xFFFFFFFE returns 0

        https://forum.qt.io/topic/113070/qt-code-of-conduct

        JonBJ 1 Reply Last reply
        0
        • JonBJ JonB

          @J.Hilk
          In that case, try passing something like 0xFFFFFFFE or 0xFFFFFFFFFFFFFFFE for the string to toShort() and those who want -2 instead of error should get it?!

          J.HilkJ Offline
          J.HilkJ Offline
          J.Hilk
          Moderators
          wrote on last edited by
          #24

          @JonB
          actually, no take a look at toLongLong

          qint64 QString::toLongLong(bool *ok, int base) const
          {
          #if defined(QT_CHECK_RANGE)
              if (base != 0 && (base < 2 || base > 36)) {
                  qWarning("QString::toLongLong: Invalid base (%d)", base);
                  base = 10;
              }
          #endif
          
              bool my_ok;
              QLocale def_locale;
              qint64 result = def_locale.d()->stringToLongLong(*this, base, &my_ok, QLocalePrivate::FailOnGroupSeparators);
              if (my_ok) {
                  if (ok != 0)
                      *ok = true;
                  return result;
              }
          
              QLocale c_locale(QLocale::C);
              return c_locale.d()->stringToLongLong(*this, base, ok, QLocalePrivate::FailOnGroupSeparators);
          }
          

          I think, haven't looked stringToLongLong up, that here happens stirng lentgh magic, because every combinaion of FFF..E up to to 0xFFFFFFFE is interpretated as the uint value and everything above as -2 (as returning int64 value)


          Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


          Q: What's that?
          A: It's blue light.
          Q: What does it do?
          A: It turns blue.

          1 Reply Last reply
          0
          • jsulmJ jsulm

            @JonB Passing 0xFFFFFFFE returns 0

            JonBJ Offline
            JonBJ Offline
            JonB
            wrote on last edited by JonB
            #25

            @jsulm

            @JonB Passing 0xFFFFFFFE returns 0

            Since QString::toLongLong() returns a qint64 (8 bytes, not 4), did you try 0xFFFFFFFFFFFFFFFE ?

            jsulmJ J.HilkJ 2 Replies Last reply
            0
            • JonBJ JonB

              @jsulm

              @JonB Passing 0xFFFFFFFE returns 0

              Since QString::toLongLong() returns a qint64 (8 bytes, not 4), did you try 0xFFFFFFFFFFFFFFFE ?

              jsulmJ Offline
              jsulmJ Offline
              jsulm
              Lifetime Qt Champion
              wrote on last edited by
              #26

              @JonB said in QString::toShort problem:

              Since QString::toLongLong() returns a qint64 (8 bytes), did you try 0xFFFFFFFFFFFFFFFE ?

              Returns 0 as well.
              And I don't see why it should depend on the length.

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              JonBJ 1 Reply Last reply
              0
              • JonBJ JonB

                @jsulm

                @JonB Passing 0xFFFFFFFE returns 0

                Since QString::toLongLong() returns a qint64 (8 bytes, not 4), did you try 0xFFFFFFFFFFFFFFFE ?

                J.HilkJ Offline
                J.HilkJ Offline
                J.Hilk
                Moderators
                wrote on last edited by
                #27

                @JonB surprisingly enough

                qDebug() << std::numeric_limits<int64_t>::min() << std::numeric_limits<int64_t>::max()
                             << endl << (int64_t)0xFFFFFFFFFFFFFFFE;
                 QString s("0xFFFFFFFFFFFFFFFE"); bool ok;
                short sh =  s.toShort(&ok, 16);
                qDebug() <<sh << ok;
                long lg = s.toLongLong(&ok,16);
                qDebug() << lg << ok;
                

                returns:

                -9223372036854775808 9223372036854775807 
                -2
                0 false
                0 false
                

                Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                Q: What's that?
                A: It's blue light.
                Q: What does it do?
                A: It turns blue.

                JonBJ 1 Reply Last reply
                0
                • jsulmJ jsulm

                  @JonB said in QString::toShort problem:

                  Since QString::toLongLong() returns a qint64 (8 bytes), did you try 0xFFFFFFFFFFFFFFFE ?

                  Returns 0 as well.
                  And I don't see why it should depend on the length.

                  JonBJ Offline
                  JonBJ Offline
                  JonB
                  wrote on last edited by JonB
                  #28

                  @jsulm
                  It would "depend on the length", as you put it, because as a 64-bit number 0xFFFFFFFE != 0xFFFFFFFFFFFFFFFE.

                  jsulmJ 2 Replies Last reply
                  0
                  • JonBJ JonB

                    @jsulm
                    It would "depend on the length", as you put it, because as a 64-bit number 0xFFFFFFFE != 0xFFFFFFFFFFFFFFFE.

                    jsulmJ Offline
                    jsulmJ Offline
                    jsulm
                    Lifetime Qt Champion
                    wrote on last edited by jsulm
                    #29

                    @JonB I want to convert a signed short number not long or long long or ...
                    0xFFFE as signed short is -2 - do you agree (I mean independently from what Qt toShort() thinks it is)?

                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                    JonBJ 1 Reply Last reply
                    0
                    • JonBJ JonB

                      @jsulm
                      It would "depend on the length", as you put it, because as a 64-bit number 0xFFFFFFFE != 0xFFFFFFFFFFFFFFFE.

                      jsulmJ Offline
                      jsulmJ Offline
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by
                      #30

                      @JonB

                      qDebug() << (short)0xFFFE;
                      

                      prints -2 as expected

                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                      J.HilkJ JonBJ 2 Replies Last reply
                      0
                      • jsulmJ jsulm

                        @JonB I want to convert a signed short number not long or long long or ...
                        0xFFFE as signed short is -2 - do you agree (I mean independently from what Qt toShort() thinks it is)?

                        JonBJ Offline
                        JonBJ Offline
                        JonB
                        wrote on last edited by
                        #31

                        @jsulm
                        I believe the problem here is a confusion between "bit representation" and "string representation".

                        • It is undoubtedly, unambiguously true that, for signed short, 0xFFFE as a bit pattern is -2.
                        • However, for signed short, 0xFFFE as a string "could" be either -2 (which fits in a short) or 65,534 (which does not fit in a short). And QString::toShort() is taking the latter interpretation, and hence erroring.
                        jsulmJ 1 Reply Last reply
                        1
                        • jsulmJ jsulm

                          @JonB

                          qDebug() << (short)0xFFFE;
                          

                          prints -2 as expected

                          J.HilkJ Offline
                          J.HilkJ Offline
                          J.Hilk
                          Moderators
                          wrote on last edited by J.Hilk
                          #32

                          @jsulm said in QString::toShort problem:

                          @JonB

                          qDebug() << (short)0xFFFE;
                          

                          prints -2 as expected

                          qDebug() << (short)0xFFFFFFFFFFFFFFFE;

                          prints also -2, would one expect that
                          0_1530172437505_306d84bf-e9ce-4724-acc5-5efc6bd718b5-image.png

                          actually yes, the first bytes are simply dropped x)


                          Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                          Q: What's that?
                          A: It's blue light.
                          Q: What does it do?
                          A: It turns blue.

                          1 Reply Last reply
                          0
                          • jsulmJ jsulm

                            @JonB

                            qDebug() << (short)0xFFFE;
                            

                            prints -2 as expected

                            JonBJ Offline
                            JonBJ Offline
                            JonB
                            wrote on last edited by
                            #33

                            @jsulm said in QString::toShort problem:

                            @JonB

                            qDebug() << (short)0xFFFE;
                            

                            prints -2 as expected

                            Yes, that's why I wrote earlier:

                            One thing that is clear: the implementation of QString::toShort() is not static_cast<short>(QString::toUShort()), even if that might have been the way you were tempted to do it.

                            jsulmJ 1 Reply Last reply
                            0
                            • JonBJ JonB

                              @jsulm
                              I believe the problem here is a confusion between "bit representation" and "string representation".

                              • It is undoubtedly, unambiguously true that, for signed short, 0xFFFE as a bit pattern is -2.
                              • However, for signed short, 0xFFFE as a string "could" be either -2 (which fits in a short) or 65,534 (which does not fit in a short). And QString::toShort() is taking the latter interpretation, and hence erroring.
                              jsulmJ Offline
                              jsulmJ Offline
                              jsulm
                              Lifetime Qt Champion
                              wrote on last edited by
                              #34

                              @JonB said in QString::toShort problem:

                              However, for signed short, 0xFFFE as a string "could" be either -2 (which fits in a short) or 65,534

                              No, signed short 0xFFFE is -2 even as string, because I'm calling toShort() not toUShort().
                              And why does

                              qDebug() << (short)0xFFFE;
                              

                              print -2?

                              https://forum.qt.io/topic/113070/qt-code-of-conduct

                              1 Reply Last reply
                              0
                              • JonBJ JonB

                                @jsulm said in QString::toShort problem:

                                @JonB

                                qDebug() << (short)0xFFFE;
                                

                                prints -2 as expected

                                Yes, that's why I wrote earlier:

                                One thing that is clear: the implementation of QString::toShort() is not static_cast<short>(QString::toUShort()), even if that might have been the way you were tempted to do it.

                                jsulmJ Offline
                                jsulmJ Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on last edited by
                                #35

                                @JonB said in QString::toShort problem:

                                the implementation of QString::toShort() is not static_cast<short>(QString::toUShort())

                                I never said that

                                https://forum.qt.io/topic/113070/qt-code-of-conduct

                                JonBJ 1 Reply Last reply
                                0
                                • jsulmJ jsulm

                                  @JonB said in QString::toShort problem:

                                  the implementation of QString::toShort() is not static_cast<short>(QString::toUShort())

                                  I never said that

                                  JonBJ Offline
                                  JonBJ Offline
                                  JonB
                                  wrote on last edited by JonB
                                  #36

                                  @jsulm
                                  But you're asking why qDebug() << (short)0xFFFE; prints -2. And I'm saying that's because of the way "cast-to-short" works in C++, which is simply not what the implementation of Qt's QString::toShort() does or purports to do.

                                  Basically, "cast-to-short" ((short)) has no concept ever of "overflow/error", but QString::toShort() does have a concept of "overflow/error", and that's why they work differently. They are not intended to be equivalent.

                                  [I am beginning to feel the need for @kshegunov 's moral support here, because I feel I am being attacked ( :( ) and it is indeed all to do with the overflowing he mentioned in his earlier reply.]

                                  jsulmJ 1 Reply Last reply
                                  0
                                  • JonBJ JonB

                                    @jsulm
                                    But you're asking why qDebug() << (short)0xFFFE; prints -2. And I'm saying that's because of the way "cast-to-short" works in C++, which is simply not what the implementation of Qt's QString::toShort() does or purports to do.

                                    Basically, "cast-to-short" ((short)) has no concept ever of "overflow/error", but QString::toShort() does have a concept of "overflow/error", and that's why they work differently. They are not intended to be equivalent.

                                    [I am beginning to feel the need for @kshegunov 's moral support here, because I feel I am being attacked ( :( ) and it is indeed all to do with the overflowing he mentioned in his earlier reply.]

                                    jsulmJ Offline
                                    jsulmJ Offline
                                    jsulm
                                    Lifetime Qt Champion
                                    wrote on last edited by
                                    #37

                                    @JonB What overflow error do you mean? 0xFFFE is a valid short number in both cases: signed and unsigned.

                                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                                    JonBJ 1 Reply Last reply
                                    0
                                    • kshegunovK Offline
                                      kshegunovK Offline
                                      kshegunov
                                      Moderators
                                      wrote on last edited by kshegunov
                                      #38

                                      Hey, let's do it the russian way and settle this outside, huh? Take a breath people.

                                      @jsulm
                                      Johann, you're wrong simply because "0xFFFE" is not a negative number, but a string, that simple. I know that in 2's complement for short this is -2, but that's if you go to the actual implementation of the negative numbers. The fact of the matter is there have been implementations that do not use integer complements. This string is not a binary representation, that is all, so don't expect the function to assume it should convert in binary-like way! Otherwise, as Jonas pointed out earlier "0xFFFFFFFFFFE" should just expand to -2 as well due to truncations.

                                      Read and abide by the Qt Code of Conduct

                                      JonBJ jsulmJ 2 Replies Last reply
                                      2
                                      • jsulmJ jsulm

                                        @JonB What overflow error do you mean? 0xFFFE is a valid short number in both cases: signed and unsigned.

                                        JonBJ Offline
                                        JonBJ Offline
                                        JonB
                                        wrote on last edited by JonB
                                        #39

                                        @jsulm

                                        @JonB What overflow error do you mean? 0xFFFE is a valid short number in both cases: signed and unsigned.

                                        0xFFFE as a bit-pattern is indeed a valid signed or unsigned bit-pattern for a short. But as a string to parse, for QString::toUShort() it's valid (65,534, which is OK for ushort), but for QString::toShort() it's a positive number greater than the positive limit of 32,767 for a short ("overflow").

                                        1 Reply Last reply
                                        0
                                        • kshegunovK kshegunov

                                          Hey, let's do it the russian way and settle this outside, huh? Take a breath people.

                                          @jsulm
                                          Johann, you're wrong simply because "0xFFFE" is not a negative number, but a string, that simple. I know that in 2's complement for short this is -2, but that's if you go to the actual implementation of the negative numbers. The fact of the matter is there have been implementations that do not use integer complements. This string is not a binary representation, that is all, so don't expect the function to assume it should convert in binary-like way! Otherwise, as Jonas pointed out earlier "0xFFFFFFFFFFE" should just expand to -2 as well due to truncations.

                                          JonBJ Offline
                                          JonBJ Offline
                                          JonB
                                          wrote on last edited by JonB
                                          #40

                                          @kshegunov said in QString::toShort problem:

                                          Hey, let's do it the russian way and settle this outside, huh? Take a breath people.

                                          LOL! Phew, that's what I needed from you! I thought you might be Russian: are you "Mafiosa", could you send some "heavies" round to @jsulm for me...? ;-)

                                          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