Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Straw Poll: Return True or False?

Straw Poll: Return True or False?

Scheduled Pinned Locked Moved The Lounge
questioncsharpc++asp-netcom
101 Posts 58 Posters 0 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.
  • C Christian Graus

    When would you return false, in a method that does nothing more than remove an item from a list ? How could removing an item from a list fail, so that the item is still there ?

    Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

    L Offline
    L Offline
    Lars Lundstedt
    wrote on last edited by
    #43

    Christian Graus wrote:

    How could removing an item from a list fail, so that the item is still there ?

    The item could be locked in some way if your app is multi-threaded, that's one way. There could also be logical reasons for your failure, you could for example have a situation where the item you want to delete has a dependency to other items in other collections (or the same one, for that matter), and the current state would not allow for deletion of your element before the related elements have reached this or that state.

    C 1 Reply Last reply
    0
    • C Chris Maunder

      Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

      cheers, Chris Maunder

      CodeProject.com : C++ MVP

      The 9 things Microsoft should be announcing at MIX07 (but won't)

      J Offline
      J Offline
      Joan M
      wrote on last edited by
      #44

      return HRESULT? ;P

      M 1 Reply Last reply
      0
      • C Christian Graus

        Yeah, ultimately, I don't think a return value is needed or justified, if all you're doing is removing an item. But, the question didn't ask that :-)

        Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

        M Offline
        M Offline
        Maarten Verdouw
        wrote on last edited by
        #45

        Uhm, you could return false if something went wrong (No DB connection, index out of range e.g.). In that case a returncode or Exception would be more convenient. But that wasn't the question.

        --------------- don't P A N I C

        C N 2 Replies Last reply
        0
        • C Chris Maunder

          Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

          cheers, Chris Maunder

          CodeProject.com : C++ MVP

          The 9 things Microsoft should be announcing at MIX07 (but won't)

          M Offline
          M Offline
          Muammar
          wrote on last edited by
          #46

          Interesting question but I would always test the overall objective "that is the existence of the item in this one".


          Smile: A curve that can set a lot of things straight! (\ /) (O.o) (><)

          1 Reply Last reply
          0
          • C Chris Maunder

            Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

            cheers, Chris Maunder

            CodeProject.com : C++ MVP

            The 9 things Microsoft should be announcing at MIX07 (but won't)

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #47

            This is a trick questions. None of the answers are fully acceptable. The question doesn't leave room for a third option of returning a status code which can take at least 3 values. Then, the answer would be to just return a separate, third value if the element to be deleted wasn't found! In my philosophy classes I was thought there are actually three states of truth: true, false, and undecided.;) The reason we're stuck with just true and false in programming seems to have something to do with the 0 and 1 values of independent bits.

            1 1 Reply Last reply
            0
            • C Christian Graus

              If you return true for 'I found it and deleted it', and true for 'I couldn't find it, so I didn't have to delete it', what would return false ?

              Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

              J Offline
              J Offline
              jlwarlow
              wrote on last edited by
              #48

              Christian Graus wrote:

              If you return true for 'I found it and deleted it', and true for 'I couldn't find it, so I didn't have to delete it', what would return false ?

              I found it but couldn't delete it. :confused:

              Never argue with an imbecile; they bring you down to their level, and beat you with experience.

              C 1 Reply Last reply
              0
              • C Chris Maunder

                Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

                cheers, Chris Maunder

                CodeProject.com : C++ MVP

                The 9 things Microsoft should be announcing at MIX07 (but won't)

                P Offline
                P Offline
                Pete OHanlon
                wrote on last edited by
                #49
                public enum CollectionItemOperation
                {
                  ItemDeleted,
                  ItemNotDeleted,
                  ItemLocked,
                  ItemNotFound
                }
                ...
                public CollectionItemOperation DeleteItemFromCollection(Hashtable ht, object item)
                {
                  CollectionItemOperation operationResult = CollectionItemOperation.ItemNotFound;
                  if (ht.Contains(item))
                  {
                    ...
                  }
                  return operationResult;
                }
                

                There you go - no ambiguity.

                Deja View - the feeling that you've seen this post before.

                1 Reply Last reply
                0
                • C Chris Maunder

                  Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

                  cheers, Chris Maunder

                  CodeProject.com : C++ MVP

                  The 9 things Microsoft should be announcing at MIX07 (but won't)

                  A Offline
                  A Offline
                  Andrew Leeder
                  wrote on last edited by
                  #50

                  In true K&R 'C' style you would return the number of items deleted, which would of course be zero. So in .NET terms that would be FALSE. ~A

                  1 Reply Last reply
                  0
                  • P Patrick Etc

                    The typical approach in the .NET Framework seems to be returning false because the item wasn't in the collection and wasn't actually deleted. It's pretty intuitive too, I suppose. If you make the call expecting the item to be deleted, and the return value says it wasn't, you might at least want to log it.


                    Cheers, Patrick

                    G Offline
                    G Offline
                    Guy Harwood
                    wrote on last edited by
                    #51

                    I would return true. The outcome you were expecting is 'true', so return it! Does that make me a bad programmer? :-D

                    ---Guy H (;-)---

                    1 Reply Last reply
                    0
                    • C Chris Maunder

                      Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

                      cheers, Chris Maunder

                      CodeProject.com : C++ MVP

                      The 9 things Microsoft should be announcing at MIX07 (but won't)

                      M Offline
                      M Offline
                      Mark II
                      wrote on last edited by
                      #52

                      I know! I know! The *right* answer is... True! No, no, I mean false! Er... no. It depends. Um. Maybe neither? Or both? Or something. Yes, yes. Something. Or null? Right. Let's start with a bit of analysis. Requirements The question explicitly states that, the "function that is *meant to* delete an item". It does *not* say "is meant to delete an item *if* it exists.". The question does *not* say what the purpose of the deletion is. This could be: 1. To ensure that the item is not in the list. 2. To release the memory / disk space that holds the item. So, the non-deletion of an item must be assumed to be a failure of the function. Parameters Persumably there are the following cases: 1. The item exists and is deleted. 2. The item exists and cannot deleted. 3. The item does not exist. 4. The user has passed invalid parameters into the function. Case (1) is a success. Case (2) and (3) are a failure of the function. Case (4) is an error. This leaves 2 reasonable behaviours: A. Return nothing for (1) or throw an exception for (2),(3) and (4). B. Return TRUE for (1), FALSE for (2) and (3), and an exception for (4). Fowever, the question asks if we should throw TRUE or FALSE for (3), so (A) is not valid. Conclusion Answer: Return FALSE. And *DOCUMENT* the meaning of this result, ideally in XML coments so that they show up in intellisense. So, what do I win? My Blog: http://allwrong.wordpress.com[^]

                      1 Reply Last reply
                      0
                      • C Chris Maunder

                        Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

                        cheers, Chris Maunder

                        CodeProject.com : C++ MVP

                        The 9 things Microsoft should be announcing at MIX07 (but won't)

                        T Offline
                        T Offline
                        The Nightcoder
                        wrote on last edited by
                        #53

                        Three methods: - DeleteItem: return void, throw one exception if item doesn't exist and another if the delete failed for some other reason. - ItemExists: return true/false. - TryDeleteItem: return true if the item exists and was deleted, false if it didn't. Throw an exception if the delete failed. This is consistent with framework behaviour, and gives the class consumer the option of picking whatever best suites the need. Note that although TryDeleteItem seems like a shorthand for an if, it might potentially be a performance optimization (if the collection is a database table, for instance). Then, DeleteItem would probably be a two-line wrapper for TryDeleteItem. Later, Peter

                        1 Reply Last reply
                        0
                        • J jlwarlow

                          Christian Graus wrote:

                          If you return true for 'I found it and deleted it', and true for 'I couldn't find it, so I didn't have to delete it', what would return false ?

                          I found it but couldn't delete it. :confused:

                          Never argue with an imbecile; they bring you down to their level, and beat you with experience.

                          C Offline
                          C Offline
                          Christian Graus
                          wrote on last edited by
                          #54

                          OK, under what circumstances is that possible ? I have a linked list of any type, under what circumstances would you expect I'd be unable to remove an item ?

                          Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

                          J 1 Reply Last reply
                          0
                          • M Maarten Verdouw

                            Uhm, you could return false if something went wrong (No DB connection, index out of range e.g.). In that case a returncode or Exception would be more convenient. But that wasn't the question.

                            --------------- don't P A N I C

                            C Offline
                            C Offline
                            Christian Graus
                            wrote on last edited by
                            #55

                            That's right, the question didn't indicate that the method did anything more complex. And, if it did, it's possible an enum would be required if a return value was needed to indicate what occured.

                            Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

                            S 1 Reply Last reply
                            0
                            • L Lars Lundstedt

                              Christian Graus wrote:

                              How could removing an item from a list fail, so that the item is still there ?

                              The item could be locked in some way if your app is multi-threaded, that's one way. There could also be logical reasons for your failure, you could for example have a situation where the item you want to delete has a dependency to other items in other collections (or the same one, for that matter), and the current state would not allow for deletion of your element before the related elements have reached this or that state.

                              C Offline
                              C Offline
                              Christian Graus
                              wrote on last edited by
                              #56

                              OK, so it's possible to think of a situation that's way more complex than the original question, and in this instance, it would make more sense for the return to be an enum, to return found it, didn't find it, or various possible other error conditions.

                              Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

                              1 Reply Last reply
                              0
                              • C Chris Maunder

                                Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

                                cheers, Chris Maunder

                                CodeProject.com : C++ MVP

                                The 9 things Microsoft should be announcing at MIX07 (but won't)

                                R Offline
                                R Offline
                                realJSOP
                                wrote on last edited by
                                #57

                                I'm old and still writing C++ - I'd return integer that would indicate this way 0=success, 1=failed/invalid index, 2=failed/item doesn't exist, and I'd set up some nifty constants to match the possible return values so the code was more maintainable/readable.

                                "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
                                -----
                                "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

                                1 Reply Last reply
                                0
                                • C Christian Graus

                                  OK, under what circumstances is that possible ? I have a linked list of any type, under what circumstances would you expect I'd be unable to remove an item ?

                                  Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

                                  J Offline
                                  J Offline
                                  jlwarlow
                                  wrote on last edited by
                                  #58

                                  Christian Graus wrote:

                                  OK, under what circumstances is that possible ? I have a linked list of any type, under what circumstances would you expect I'd be unable to remove an item ?

                                  It would depend on the items in the list, if these items referenced a resource or database entry for example, and in this case the resource was unreachable or database was locked etc. Then you could fail to delete. Another example would be if the entry had a reference count that was higher than two meaning it was still in use. On reflection, throwing an exception would be a preferable to give a reason why the item could not be deleted. I think this has been mentioned in other replies in the thread.

                                  Never argue with an imbecile; they bring you down to their level, and beat you with experience.

                                  C 1 Reply Last reply
                                  0
                                  • J jlwarlow

                                    Christian Graus wrote:

                                    OK, under what circumstances is that possible ? I have a linked list of any type, under what circumstances would you expect I'd be unable to remove an item ?

                                    It would depend on the items in the list, if these items referenced a resource or database entry for example, and in this case the resource was unreachable or database was locked etc. Then you could fail to delete. Another example would be if the entry had a reference count that was higher than two meaning it was still in use. On reflection, throwing an exception would be a preferable to give a reason why the item could not be deleted. I think this has been mentioned in other replies in the thread.

                                    Never argue with an imbecile; they bring you down to their level, and beat you with experience.

                                    C Offline
                                    C Offline
                                    Christian Graus
                                    wrote on last edited by
                                    #59

                                    An exception can be expensive, it all depends on how often it may occur. But yes, I said from the start that it depends on the complexity of hte method. Interesting discussion that Chris started.

                                    Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

                                    J 1 Reply Last reply
                                    0
                                    • C Chris Maunder

                                      Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

                                      cheers, Chris Maunder

                                      CodeProject.com : C++ MVP

                                      The 9 things Microsoft should be announcing at MIX07 (but won't)

                                      A Offline
                                      A Offline
                                      Aamir Butt
                                      wrote on last edited by
                                      #60

                                      I will return S_FALSE :)

                                      "Some people believe football is a matter of life and death. I'm very disappointed with that attitude. I can assure you it is much, much more important than that. -- Bill Shankly"

                                      1 Reply Last reply
                                      0
                                      • C Christian Graus

                                        An exception can be expensive, it all depends on how often it may occur. But yes, I said from the start that it depends on the complexity of hte method. Interesting discussion that Chris started.

                                        Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

                                        J Offline
                                        J Offline
                                        jlwarlow
                                        wrote on last edited by
                                        #61

                                        Christian Graus wrote:

                                        An exception can be expensive, it all depends on how often it may occur. But yes, I said from the start that it depends on the complexity of hte method.

                                        From my COM/DCOM days, you could return a HRESULT, S_OK for found and deleted, S_FALSE for not found assumed deleted, and failed codes for each of the reasons for failure ;)

                                        Christian Graus wrote:

                                        Interesting discussion that Chris started.

                                        Indeed! :-D

                                        Never argue with an imbecile; they bring you down to their level, and beat you with experience.

                                        1 Reply Last reply
                                        0
                                        • C Chris Maunder

                                          Here's a philosophical question: If you have a function that is meant to delete an item from a collection and the item you wish to delete doesn't exist, do you: 1. Return TRUE since the final outcome (not having that item) has been fulfilled, or 5. Return FALSE because since the function couldn't find the item, it couldn't actually delete it. Vote now.

                                          cheers, Chris Maunder

                                          CodeProject.com : C++ MVP

                                          The 9 things Microsoft should be announcing at MIX07 (but won't)

                                          D Offline
                                          D Offline
                                          DavidNohejl
                                          wrote on last edited by
                                          #62

                                          Depends on what do you mean by return value. Does it indicate if everything was ok (true) or something went wrong (false)? In that case, return TRUE if item to delete wasn't found. Or, does return value indicate if it deleted item or not? In that case, return FALSE if item to delete wasn't found.


                                          "Throughout human history, we have been dependent on machines to survive. Fate, it seems, is not without a sense of irony. " - Morpheus "Real men use mspaint for writing code and notepad for designing graphics." - Anna-Jayne Metcalfe

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups