Back to Basics: Exceptions - Klaus Iglberger - CppCon 2020

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

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

  • @alexanderchertov4052
    @alexanderchertov4052 4 ปีที่แล้ว +3

    Nice presentation, good to go over the fundamentals.
    The slide said "How to deal with failing cleanup functions" in RAII but the discussion was more around which API to use to be notified of a failed attempt to close a file. I guess the message here could be "if you can't cleanup in the destructor - you're out of luck and have either leak the resource (for example, leave the mutex locked if that could fail) or terminate()"

  • @ifilmhackersdotcom
    @ifilmhackersdotcom ปีที่แล้ว +2

    You didn't need 1 hour to tell me not to use exceptions. Just the first 5 minutes convinced me.

  • @bobweiram6321
    @bobweiram6321 3 ปีที่แล้ว +20

    The top C++ experts tend to be trainers than actual programmers. It says a lot about a language when understanding its details is a field in itself.

    • @tilmanrotationalinvariant2257
      @tilmanrotationalinvariant2257 2 ปีที่แล้ว

      As I see it, it is a language where practical research is done. Other languages makes then the best practises, which has been found out by experimenting in cpp, mandatory.

    • @SisypheanRoller
      @SisypheanRoller 2 ปีที่แล้ว

      @@tilmanrotationalinvariant2257 if you're talking about actual research, C++ isn't it. It's a very practical tool, but cutting edge isn't it.

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

      C++ is unfortunately a language where academics settle their tenure at the expense of engineers.

    • @artofcomputing-art
      @artofcomputing-art ปีที่แล้ว

      @bobweiram6321 and thank God for that, I highly prefer to have C++ experts to be teachers, by sharing their knowledge we can build upon it, and make ourselves become experts to pass on the knowledge and hopefully make things better for the next generation of C++ devs

  • @__hannibaalbarca__
    @__hannibaalbarca__ ปีที่แล้ว +2

    4:09 I still not use these Exception,

  • @patrickyeung5771
    @patrickyeung5771 3 ปีที่แล้ว +2

    Excellent presentation skills and very helpful contents!

    • @CppCon
      @CppCon  3 ปีที่แล้ว

      Glad it was helpful!

  • @dslundqvist
    @dslundqvist 3 ปีที่แล้ว +1

    For slide 78, shouldn't this->pr be reset if w.pr is nullptr? Otherwise it'll have the old Resource.

  • @tourdesource
    @tourdesource ปีที่แล้ว

    Great talk, Klaus!

  • @aldrinaldrin4618
    @aldrinaldrin4618 4 ปีที่แล้ว +3

    Oh man.. is there a part of this video that recommends exception over features that exists in Modern C++? Did I miss something?
    Btw, you know that presentation is really good when you thought the video ended in 30 minutes but actually has 1 hour runtime. Excellent video!

  • @EgD996
    @EgD996 4 ปีที่แล้ว +1

    great talk on exception

  • @sc-mh3jj
    @sc-mh3jj 4 ปีที่แล้ว +2

    Great talk, thank you!

  • @isodoublet
    @isodoublet ปีที่แล้ว

    The remarks around not throwing exceptions in case of bugs, and that asserts should be preferred, are odd to me. As far as I can tell, the only acceptable production-viable implementation of asserts is in terms of exceptions. A bug happening somewhere doesn't mean that your entire process needs to be unceremoniously brought down; you can at the very least still log what happened. In many cases, you should even be able to continue work on subsequent work units, canceling only the one that caused the problem. This is a perfect fit for exceptions.

  • @Radioguy00
    @Radioguy00 4 ปีที่แล้ว +1

    Slide 78. Don't we end up with multiple unique_ptr pointing to the same object? Shouldn't such a class be movable only ?

    • @lpc921
      @lpc921 4 ปีที่แล้ว +1

      No. The old unique pointer's destructor is called before the new object is assigned

    • @SamWhitlock
      @SamWhitlock 4 ปีที่แล้ว +1

      It's not copying the pointer. It's making a new Resource using the Resource's copy constructor to initialize the new heap-allocated Resource.

  • @isodoublet
    @isodoublet ปีที่แล้ว

    try {
    auto i = try to_int("12");
    auto d = try divide(42, i);
    }
    Who rated this "9" for noise? Were they thinking that higher number = more noise or something? It's terrible, hope it never becomes standard.

  • @lajos76nagy
    @lajos76nagy ปีที่แล้ว +2

    TL;DR: Exceptions in C++ still suck and are not worth the effort. Maybe someday. Representative quote: "Exceptions are great because that's the only way to report errors from constructors! Oh, by the way, you cannot throw exceptions from destructors. Because ... it's complicated. So, yeah, just, well, write exception-safe code, man." I'm sticking to error-codes. Or, rather, absl::Status and absl:StatusOr. Let me know when exceptions no longer suck.

    • @ifilmhackersdotcom
      @ifilmhackersdotcom ปีที่แล้ว

      100% agree. Don't want to fall off the cliff? Stay away from the rim.

    • @isodoublet
      @isodoublet ปีที่แล้ว +2

      Nope, exceptions are still great. Not having to write a bunch of boilerplate just to ferry error information up and down is brilliant. In practice, you don't want to throw from destructors anyway so it's not a serious limitation. Sounds like you need more experience with them.

  • @konstantinburlachenko2843
    @konstantinburlachenko2843 2 ปีที่แล้ว

    At 11:11 there is a small misprint - The main function should have " return 0;" in another case this program have formally undefined behaviour. Super cool talk!