• BehindTheBarrier@programming.dev
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    5 days ago

    It can be pretty convenient to throw an error and be done with it. I think for some languages like Python, that is pretty much a prefered way to deal with things.

    But the entire point of Rust and Result is as you say, to handle the places were things go wrong. To force you to make a choice of what should happen in the error path. It both forces you to see problems you may not be aware of, and handle issues in ways that may not stop the entire execution of your function. And after handling the Result in those cases, you know that beyond that point you are always in a good state. Like most things in Rust, that may involve making decisions about using Result and Option in your structs/functions, and designing your program in ways that force correct use… but that a now problem instead of a later problem when it comes up during runtime.

    • kersplomp@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      5 days ago

      But the entire point of Rust and Result is… to force you to make a choice of what should happen

      Checked exceptions also force you to handle it and take way less boilerplate.

      • BehindTheBarrier@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        5 days ago

        But nothing is forcing you to check exeptions in most languages, right?

        While not checking for exceptions and .unwrap() are pretty much the same, the first one is something you get by not doing anything extra while the latter is entirely a choice that has to be made. I think that is what makes the difference, and in similar ways why for example nullable enabled project in C# is desired over one that is not. You HAVE to check for null, or you can CHOOSE to assume it is not by trying to use the value directly. To me it makes a difference that we can accidentally forget about a possible exception or if we can choose to ignore it. Because problems dealt with early at compile time, are generally better than those that happen at runtime.

        • kersplomp@programming.dev
          link
          fedilink
          arrow-up
          2
          ·
          4 days ago

          I see your concern, but in practice that’s not what happens in languages like Java and Python with exceptions. Not checking for exceptions is a choice because everyone knows you need to check in your top-level functions. Forgetting to catch is a problem that only hits newbies.

          • OmnipotentEntity@beehaw.org
            link
            fedilink
            arrow-up
            4
            arrow-down
            1
            ·
            4 days ago

            A problem that only affects newbies huh?

            Let’s say that you are writing code intended to be deployed headless in the field, and it should not be allowed to exit in an uncontrolled fashion because there are communications that need to happen with hardware to safely shut them down. You’re making a autonomous robot or something.

            Using python for this task isn’t too out of left field, because one of the major languages of ROS is python, and it’s the most common one.

            Which of the following python standard library functions can throw, and what do they throw?

            bytes, hasattr, len, super, zip