Cursed C++ Casts

Поделиться
HTML-код
  • Опубликовано: 22 ноя 2024

Комментарии • 468

  • @turun_ambartanen
    @turun_ambartanen Год назад +439

    This is *so* C++. You have a lot of nice tools available to safely do an operation. There are several variants so you can pick the one that fits your usecase best. At the cost of language spec size, sure, but that's an understandable tradeoff.
    And then you have the one way that is easiest to write, inherited from C and also the most dangerous option of all.

    • @ZeroPlayerGame
      @ZeroPlayerGame Год назад +47

      Your function can either take an std::vector::iterator, or a T*...

    • @Jake28
      @Jake28 Год назад +3

      Yeah? I've never used C or C++, but like, what the hell? I think i'm just gonna stick to Java...

    • @brylozketrzyn
      @brylozketrzyn Год назад +15

      Welcome to the world of embedded. Even when you want to go with C++ you will end up using some C because all the drivers are C-only. Your precious vectors will be casted to scary pointers (and DMA doesn't know any other way anyways). Also say hi to bitfields and magic bytes

    • @joestevenson5568
      @joestevenson5568 Год назад +4

      ​@@brylozketrzynthere's no such thing as "c only". C++ was originally implemented by transpiling it to C and this can still be done.

    • @antagonista8122
      @antagonista8122 Год назад +6

      @@brylozketrzynFortunately even if library is written in C this mess of a language can be wrapped into something useful. Unfortunately many times the C code quality/practices can be so bad that the best you can do (if possible) is to write it from the scratch and don't even bother wrapping it.

  • @Phroggster
    @Phroggster Год назад +198

    Ok ok ok, I'm done using C-style casts (not that i ever really used them). Instead, you've convinced me to implement a c_style_cast(...) template to hide away everything I'm doing wrong into one place. Thanks!

    • @Greeem
      @Greeem Год назад +43

      A perfectly C++ solution!

    • @davepruitt
      @davepruitt Год назад

      This comment wins.

    • @gblargg
      @gblargg Год назад +5

      Now, implement c_style_cast *without* using a C-style cast.

    • @DeuxisWasTaken
      @DeuxisWasTaken 8 месяцев назад

      @@gblargg nobody has to know

  • @KleptomaniacJames
    @KleptomaniacJames 10 месяцев назад +14

    "Undefined behaviour" words to stop the weak from treading where the strong stride.

  • @comexk
    @comexk Год назад +128

    There's a worse version of the C-style cast example. In this version, S isn't refactored to remove the IFoo superclass. S doesn't change at all. Instead, you just happen to do a cast from a source file that only has a forward declaration of S.
    That is, you have some code like this:
    void foo(S *s) {
    bar((IFoo *)s);
    }
    If S is fully defined, then this will compile as a static_cast, offsetting the pointer.
    If S is only forward declared, then it will compile as a reinterpret_cast, not offsetting the pointer.
    For bonus points, `foo` might be an inline function defined in a header, in which case it might mean different things when compiled in different source files! (Which is also undefined behavior due to being an ODR violation.)

    • @hagaiak
      @hagaiak 9 месяцев назад +8

      My god...

  • @afelias
    @afelias Год назад +128

    So glad I use C-style casts all willy-nilly. Now that I'm seeing more proper C++ casts I can feel like a man when I swing out a C-style cast in accordance to my Principle of Most Power.

    • @SauvikRoy
      @SauvikRoy Год назад +2

      😂😂😂

    • @briannormant3622
      @briannormant3622 Год назад +25

      Same, ever since I discovered void *, I only use this type, for every function parameters and return and cast them inside.

    • @sean_r
      @sean_r Год назад

      @@briannormant3622 the real man's va_list lmao

    • @SuperSmashDolls
      @SuperSmashDolls 10 месяцев назад +18

      That violates the principle of most power. You should be opening /proc/[PID]/mem and copying the bits on the stack over instead.
      Bonus points: It even bypasses Rust safety guidelines, so you can piss off two language committees at once.

    • @soniablanche5672
      @soniablanche5672 10 месяцев назад

      ​@@briannormant3622 void * is basically a char * that doesn't let you do pointer arithmetics

  • @RPG_Hacker
    @RPG_Hacker Год назад +52

    I love that you mention how obvious it is that public_cast should never be used, because I 100% agree with you - and yet, I've actually ran into a problem once in the past where using it was legitimately my best option (and I ended up solving it in an even more horrible way)! 😅
    So the situation came up when we remastered an old video game, and in the process, we needed to update the Havok physics middlewere used in it to a newer version. This is always a horrible process (and one of many reasons I hate using Havok, or middleware in general), but it was made especially difficult for us thanks to another problem: The binary assets for the game had Havok data embedded directly into them, and since the majority of the original game's converters were no longer usable for us, we couldn't just recreate those assets in the new format. Yet we also couldn't use the original game assets without modifications in the game, since the new Havok version would just reject the old serialized data.
    What we had to do to solve the problem was to create a new converter that just reads in the game's old binary assets, deserialize the Havok data within them using the old Havok version, re-serialize it using the new Havok version, and finally write the entire asset back out to a file. However, there was a small problem there: This kind of migration process wasn't built directly into Havok. I know it has some support for version migration, but not for this specific use case. So instead of migrating the data directly, we had to create new Havok data from scratch by using the raw deserialized data as a base.
    Except, there was yet another problem: The old data we needed access to in order to create the new data was completely private in the headers of the old Havok version - and that's where dirty tricks come into play, like your public_cast shown here. Another option would have been to simply edit the headers of the legacy Havok version (since we really didn't care about legacy Havok anymore). Instead, I ultimately decided to go with an even nastier (and even funnier) solution:
    #define private public
    #include
    #undef private
    Yes, this actually worked - and I was laughing my ass off for hours after writing it! 😄
    Since this specific converter was just a quick and dirty solution to a very ugly problem and we didn't even intend to maintain it long-term, we were fine with getting our hands a little dirty there. I guess this goes to show that no matter how obviously horrible something is in coding, there might always come a time when using it is legitimately your best option.

    • @_noisecode
      @_noisecode  Год назад +33

      Thanks for the scary story prequel. :) This sounds like a nightmare! I’m glad you heightened the comedy by cracking it in the most cursed way possible. Desperate times call for desperate measures!

    • @RPG_Hacker
      @RPG_Hacker Год назад +7

      @@_noisecode We coders do what coders gotta do, even if it means getting our hands dirty along the way! 😤

    • @fu5ha_edits
      @fu5ha_edits 9 месяцев назад +3

      Holy shit lol. Actually laughed out loud..

    • @pluieuwu
      @pluieuwu 6 месяцев назад

      visibility was always merely a suggestion... :)

  • @lostsauce0
    @lostsauce0 Год назад +443

    That public_cast is truly one of the most cursed things I've ever seen. It makes me feel a deep unease.

    • @ultradude5410
      @ultradude5410 Год назад +35

      IIRC, the standards committee agree that: it *is* allowed, but that it *shouldn't* be allowed, but they also haven't been able to do anything about it since 2015 when this cursed technique was discovered.

    • @ZeroPlayerGame
      @ZeroPlayerGame Год назад +36

      @@ultradude5410 ultimately who cares, #define private public is a much simpler, much more effective technique of defeating encapsulation.

    • @Takyodor2
      @Takyodor2 Год назад +14

      @@ultradude5410 There's something unreasonably funny to me about "but they also haven't been able to do anything about it" 🤣

    • @ButterCatz
      @ButterCatz Год назад +7

      @@ZeroPlayerGameI am almost sure that defining any keyword is UB.

    • @ifnullreturn1
      @ifnullreturn1 Год назад +2

      ​@@ZeroPlayerGame#define 0 1

  • @priestessofchaos430
    @priestessofchaos430 Год назад +741

    You know, you're not so much scaring me away from particular usage, rather you're scaring me away from C++ altogether.

    • @user-tj9gj2wx5d
      @user-tj9gj2wx5d Год назад +75

      5 years of commercial software engineering, still scared of C/C++

    • @not_herobrine3752
      @not_herobrine3752 Год назад +26

      id just embrace the chaos at this point

    • @electric26
      @electric26 Год назад

      ​@@not_herobrine3752I'd rather use Rust to protect my sanity

    • @asdfghyter
      @asdfghyter Год назад +45

      sounds good! use Rust instead if you have the chance, it's so much nicer and you're relieved of a lot of the burden C++ places on you (for example things like thinking about move constructors, copy constructors etc. and generally being concerned about memory safety)

    • @Xotchkass
      @Xotchkass Год назад

      @@asdfghyter No. Go away shill.

  • @zackyezek3760
    @zackyezek3760 Год назад +27

    As a C++ expert, “public_cast” and even C-casts aren’t the most evil ones possible.
    For example, with c++20 concepts, partial template specialization, and constexpr/consteval I can write a cast whose behavior changes based on both the type AND value. And I can even make it recursive. I can write a relative of “public_cast” that alters the input object’s identity by swapping out vtable pointers with a related class’s (yes this is technically undefined in the spec, but it’ll work on all 3 major compilers). And there are others.
    See, what you have to remember about C and C++ is that 1) at the bottom, everything is ultimately a bag of bytes and 2) their design is all about giving you as many tools as possible, rather than preventing misuse. It’s a classic case of freedom+ power = potential for misuse. If you think the abuses that c++ enables or permits are bad, take a look at what’s possible with straight assembly.

    • @linuxoidovich
      @linuxoidovich 8 месяцев назад

      C++ standard not allow more.

  • @daifee9174
    @daifee9174 Год назад +8

    You failed to convince me, I will continue to use the c-style cast.

    • @СергейМакеев-ж2н
      @СергейМакеев-ж2н Год назад +3

      The part where the c-style cast "changes its meaning without telling you about it" seems to be the reason why C++ has created this "zoo" of different casts in the first place. A valid design decision, but I guess it's not for everyone.

    • @kacperrutkowski6350
      @kacperrutkowski6350 18 дней назад

      I mean you can still do the 'reinterpret cast' in C by just casting a pointer, for example
      float f = *(float*)&i;
      Where i is an integer. So there are at least two types of casts in C, direct one and the one reinterpreting pointer (equivalent to reinterpret cast on C++)

  • @asmodeuszdewa7194
    @asmodeuszdewa7194 Год назад +29

    I have no idea what was going on during the public_cast section

    • @DominicDW8
      @DominicDW8 Год назад +4

      Thanks, felt the same. The rest makes perfect sense but chapter 3 - wtf 😂

    • @ccgarciab
      @ccgarciab Год назад +5

      Arcane magic

  • @DrGreenGiant
    @DrGreenGiant Год назад +23

    Great video. I was amused when you said about omitting constexpr, nodiscard, ... Not withstanding the craziness of casts, I think that the ridiculous number of decorators we add to code is a huge danger to future of the language. It's starting to become quite unreadable and the barrier to entry to understand all this stuff for a junior is insane to "correctly" write a function that adds two numbers together, for example.

    • @_noisecode
      @_noisecode  Год назад +18

      I’m with you 100% on this. It’s getting ridiculous the number of magic words you have to add to your function declarations to fulfill all the best practices. Not to mention that they’re easy to get wrong.

  • @zacharymontgomery9328
    @zacharymontgomery9328 Год назад +52

    This is terrifying. I'll make sure to recount it in detail to all my friends for Halloween.

  • @cstockman3461
    @cstockman3461 Год назад +50

    Great video! Love the description of all the stuff, especially refactoring the fast inverse square root not to be UB by using bit_cast

  • @sunimod1895
    @sunimod1895 Год назад +25

    I shivered looking at the thumbnail ☠️
    Edit after watching the video: truly terrifying stuff 😮

  • @jackalph.d801
    @jackalph.d801 Год назад +53

    So the 0x5f3759df from the Quake inverse squareroot algorithm has to do with the constants associated with a Taylor series expansion of the logarithm of 1/sqrt(x), if I remember correctly. The bit shift is done as a more efficient (read lossy) way of multiplying/dividing by 2 depending on shifting to the left or the right. There was a video that went over the algorithm in great detail that made it super easy to follow.

    • @TrimeshSZ
      @TrimeshSZ Год назад +1

      Nothing lossy about implementing a multiplication or division by 2 on a binary machine using a shift - the result is exact.

    • @IBelieveInCode
      @IBelieveInCode Год назад

      @@TrimeshSZ Unless you mix signed and unsigned integers. In this case, make sure you are doing the good casts at the good times 🙂(whatever cast type it is... I don't see C-casts as "cursed", but the C++ language is entirely "cursed", lol)

    • @jackalph.d801
      @jackalph.d801 Год назад +1

      My understanding is that doing that trick on a float, like is being done in the algorithm, will lose at least some information. If it were an unsigned int or whatever it would be exact, but I didn't think that was the case for floats.
      @@TrimeshSZ

    • @jackalph.d801
      @jackalph.d801 Год назад

      thank you for the correction, I couldn't remember exactly which step was which. I should have checked before commenting.@@leeroyjenkins0

    • @thewhitefalcon8539
      @thewhitefalcon8539 Год назад +2

      The key insight is probably that halving the exponent gives the approximate square root, to within a factor of 2. Then the rest is just finding the best approximation

  • @qerupasy
    @qerupasy Год назад +22

    I always thought that const_cast was the most insane thing. And then I learned that you can cast away "private".

    • @Caellyan
      @Caellyan Год назад +6

      I think casting away private is something that's incredibly useful when you need to read the data that the API didn't expose for some unknown reason.

    • @Demonslay335
      @Demonslay335 Год назад +2

      ​@@Caellyanso many times I've had to copy/paste an entire class only to be able to change/access one private member instead of a simple inheritance... I really wish libraries just used protected. But then again, in my line of work I have to constantly modify things like cryptography classes that explicitly don't want the average user messing with their members.

    • @ruanpingshan
      @ruanpingshan Год назад +3

      const_cast is useful if you have to use an old C library that was made without using the const keyword, when you know that it doesn't modify some function parameters.

  • @pyromen321
    @pyromen321 Год назад +66

    6:04 I’m so glad that literally every popular compiler doesn’t care what the standard says and makes this implementation defined behavior. So much production code takes advantage of reinterpret_cast for bit shenanigans

    • @noamtashma617
      @noamtashma617 Год назад +3

      Interesting... can you give some reference to that?

    • @Finkelfunk
      @Finkelfunk Год назад

      ​@@noamtashma617 Well among others reinterpret_cast has one primary usage which is (quoting CPP-Reference) converting "an expression of integral, enumeration, pointer, or pointer-to-member type to its own type. The resulting value is the same as the value of expression.". Meaning legally speaking it is only defined if you cast an object back to its original type. You can also use this to cast to an object that is able to hold any value from the type you are casting from.
      Meaning you could cast the address of an int to a std::uintptr_t.
      To understand this, it basically means that
      int i = 7;
      std::uintptr_t v1 = reinterpret_cast(&i);
      is a legal use of reinterpret_cast. If you use a static cast you would get a compile error because it cannot cast from type int * to a std::uintptr_t. The reasoning is that different types have different size and alignment requirements. So you are left with a reinterpret_cast to convert the address of an int to the address of an unsigned long, which fulfills the second criteria (casting to a type that can hold any value of another type).
      They give a good example for another use with the following code:
      struct S1 { int a; } s1;
      int* p1 = reinterpret_cast(&s1);
      This is legal to do because S1 == sizeof(int*). So no harm is done by converting the types. This is referred to as "pointer-interconvertible objects".
      All of that said, sometimes you just want a quick and easy fix to interpret the bytes of a float as an int and vice versa, like in Quake.
      Since most production code is older than C++20, if that was ever required and you _really_ wanted to avoid std::memcpy then this was the way to do it.

    • @ratgr
      @ratgr Год назад +5

      well, it actually is not undefined behaviour it is unspecified behaviour, which means each compiler might do whatever it finds easier to implement. Unspecified Behaviour may be read as try to use something else, or if you know your compiler implementation good enough

    • @gianni50725
      @gianni50725 Год назад

      @@noamtashma617 See GCC, and linus' rant on strict aliasing. GCC explicitly doesn't care about this rule by default because it would break their most compiled project of all time (the linux kernel)

    • @Bolpat
      @Bolpat Год назад +11

      Before bit_cast, there was no portable option. That's why bit_cast was added, after 22 years.

  • @artemiskearney8019
    @artemiskearney8019 Год назад +12

    3:56
    Fun fact: the Typescript compiler has no qualms about taking the inverse of a template type to do type deduction. This is actually quite useful, except for the part where there's absolutely no spec for when it will or won't work.

    • @Selsato
      @Selsato Год назад

      God that is the most JavaScript shit

    • @Caellyan
      @Caellyan Год назад +1

      I think the issue is that the result is not deterministic which doesn't matter for TS because it doesn't have to do much with type results and it can resolve to `A | B | ...` while C++ doesn't have an implicit type union and has to know the actual type as the result will affect the behavior of the program. I'm not 100% sure I got that part of the video but that's why if I did.

  • @sinom
    @sinom Год назад +21

    When you first started talking about pun_cast I was thinking "isn't that just bit_cast? How would it be different?" Guess it wasn't different at all lol

    • @ruanpingshan
      @ruanpingshan Год назад +1

      I genuinely have a hard time understanding why bit_cast is better than reinterpret_cast. I've never seen people use bit_cast on pointers or references, only values. I didn't even know reinterpret_cast could be used on values.

  • @Jean-MichelGilbert-y2q
    @Jean-MichelGilbert-y2q Год назад +3

    C-Style casts also cast away volatile (and yes volatile is useful in some contexts, namely for variables that are expected to be modified externally by e.g. interrupts, IPC, network callbacks, so the optimizer shouldn't reason about their value).

  • @equivocator7727
    @equivocator7727 Год назад +110

    The scariest thing about any of this code is using multiple inheritance.

    • @_noisecode
      @_noisecode  Год назад +66

      Heh. I was very careful to call the second base class `IFoo` in order to make it a case of classical OOP--one base class, followed by multiple interfaces. That's a flavor of "multiple inheritance" that's supported by plenty of languages and considered safe because it doesn't suffer from the diamond problem... but in C++, it still has this footgun surrounding C-style casts.

    • @noamtashma617
      @noamtashma617 Год назад +6

      It doesn't really matter because you have the same problem even with only single inheritance

    • @musaran2
      @musaran2 Год назад +2

      I have to say, aggregate multiple inheritance never made much sense for me in C++.
      It causes endless complexities trying to hide the dirty trick that it is implemented as composition, which ruins address identity.

    • @Carewolf
      @Carewolf Год назад +1

      @@noamtashma617 No, the pointer doesn't offset with single inheritance. The pointer to Base and the pointer to Derived are the one and the same. Only the length of the object is different.

  • @elijahshadbolt7334
    @elijahshadbolt7334 Год назад +12

    public_cast reminds me of C# reflection which enables every private property and private field to be gettable and settable, even from other assemblies. It's interesting that some of that is possible in C++.

    • @HrHaakon
      @HrHaakon Год назад +9

      You can do the same sort of f*ckery in java. that one time a year when you need it it's wonderful.
      That time someone uses it because it would be fun? NOT wonderful... :D

    • @TheRPGminer
      @TheRPGminer Год назад +1

      If you are super explicit about that things, they may be very convenient. But the moment when developers starts to make too much magic, I say it's time too stop. I usually hate implicit things besides rare exception

    • @Caellyan
      @Caellyan Год назад

      @@TheRPGminer I firmly believe doing magic is a good thing if it will make life easier and code run faster for the next person in line, and it's fun 😂

    • @thewhitefalcon8539
      @thewhitefalcon8539 Год назад

      Unofficially and therefore not guaranteed to work, you can do it with pointer arithmetic.

  • @gregthemadmonk
    @gregthemadmonk Год назад +16

    6:40 is not entirely correct. The C++ standard has an explicit note about accessing an inactive union member for special cases like struct with common beginnings
    /*
    One special guarantee is made in order to simplify the use of unions: If a standard-layout union contains several standard-layout structs that share a common initial sequence (11.4), and if a non-static data member of an object of this standard-layout union type is active and is one of the standard-layout structs, it is permitted to inspect the common initial sequence of any of the standard-layout struct members; see 11.4. - end note
    */
    This doesn't work in constexpr context though :)
    Also, for 11:30 it's probably doable with stateful metaprogramming
    amazing video btw :)

    • @_noisecode
      @_noisecode  Год назад +10

      Ah yes, the "C inheritance" exception to union access. Thanks for the correction. :)

    • @alexb5594
      @alexb5594 9 месяцев назад

      It doesn't work in constexpr because it's still UB, you are incorrect. This isn't what the common initial sequence rule refers to, it's for when you have a union of 2 structs, and both structs have a common member -of the same type-, you can access that member through either type, regardless of which struct is the active member of the union.
      I dont fault you for misunderstanding this rule, it's a bit of a doozy, even language lawyers have a hard time with this one.

    • @gregthemadmonk
      @gregthemadmonk 9 месяцев назад

      @@alexb5594 Isn't this essentially what I said? By "common beginnings" I meant "structs that start with members of the same type".

  • @ionarevamp
    @ionarevamp Год назад +5

    The public cast as an idea almost seemed like something good when I didn't know much about programming, but the more I learned, the more I appreciate local variables. Scoped variables are everything

  • @asdfghyter
    @asdfghyter Год назад +16

    1:05 - 4:36 This is one reason why type inference is so much easier when you don't have subtyping. In languages like Haskell and Rust, the bidirectional type inference can in principle allow you to omit every single type annotation and still figure out the types everywhere. now, rust requires you to specify types on (non-lambda) functions, but that's just because it's good practice to do so, not because of any technical limitations. This is because the lack of subtypes allows there to always be a single most generic canonical type of any value, so you will never have to try to guess which of the possible types (including upcasting) a value should have, so the "implicit cast" function is not needed.

    • @PeterAuto1
      @PeterAuto1 Год назад +4

      there is an exception. there are methods that allow multiple return types, like .into()
      in that case the return type has to be stated.

    • @strager_
      @strager_ Год назад +4

      @PeterAuto1 is correct. Rust *does* have subtyping via its trait system, so it is sometimes impossible to infer with missing type annotations (i.e. sometimes type annotations are required).

    • @asdfghyter
      @asdfghyter Год назад +1

      @@strager_ but from what I can tell, subtyping via parametric polymorphism and unification still makes it a lot easier to make type inference. Even in the case PeterAuto1 mentioned, there is still a principal (canonical most generic) type, the only issue is that there's no canonical monomorphic type if it's also consumed by a polymorphic function. Which does indeed mean we need to specify the type there, but not because there's no principal type in general, just because the principal type is polymorphic

  • @Murukku47
    @Murukku47 6 месяцев назад +1

    Somehow C-style 'type(value)' casts always felt most aesthetic to me since it just looks like a function you give some other data type as an argument that then turns into the data type the function is named after.

  • @Th1200
    @Th1200 Год назад +5

    Every time I have to write C++ I hate its complexity and end up writinga mix of C and C++ because it is simpler that way and I am kinda dumb...
    I like to live dangerously :D

  • @kalleguld
    @kalleguld Год назад +10

    I love type punning (the word, not the action).

  • @Dth091
    @Dth091 Год назад +3

    The first example could be called like `foo (base, derived);`, which isn't ideal but is at least simple and avoids casting

    • @crisplake4521
      @crisplake4521 Год назад

      This is exactly what I was looking for in the comments. Why would you start casting when the solution is so simple.

  • @captainfordo1
    @captainfordo1 Год назад +13

    Who would have thought that making your language more complicated would necessitate even more complextiy to fix the mess? As someone who primarily uses C for his projects, I can proudly say I am sticking with C-style casts.

  • @treym2k
    @treym2k Год назад +5

    I've been using c++ for years at this point. Had no clue how scary type casting can be. Great video!

    • @EvanOfTheDarkness
      @EvanOfTheDarkness Год назад +1

      The C-style cast is just how reinterpret_cast should've been. If I'm willing to cast away the actual type and treat your data like the series of bits it is, do you think I care about it being const? No, not a bit!

    • @strager_
      @strager_ Год назад

      @@EvanOfTheDarkness But then how do the reinterpret_cast discussed at 15:34? Would I need two casts or something?

  • @electricnezumi
    @electricnezumi Год назад +2

    Alright, you got me, I'm adding a new line to my personal style guide.

  • @wChris_
    @wChris_ Год назад +4

    and yet i hear it all around "but i can write correct C code" while writing C++, with blissful ignorance of the dangers that lurk under the C, or maybe just they know their stuff and do it anyway because it is such a nice touch!

    • @vercolit
      @vercolit Год назад +10

      C++ has "better ways of doing things than C", but in a significantly more complex environment, while retaining backwards compatibility with the C way, its 90s way of doing things and an extra random way that got immediately depracted 2 standards later. C casting words fine in C because you can't have ultra fancy/complex types, so the reinterpretation is always pretty simple. C function pointers are ugly and incomprehensible, but you can typedef. You have to use raw pointers in C, but since it's the only way to pass things by reference, the code is very self-documenting and stays simple. Overall, C is much simpler than C++

    • @lucass8119
      @lucass8119 Год назад

      @@vercolit I often see this argument that C is simple while C++ is not, therefore C++ is more unsafe. And frankly I don't think this makes any sense. While C is simple, as in the language definition is small, that doesn't mean making programs is simple. Imagine you're trying to build a car. On one hand, you can have a simple toolbox - just a screwdriver. On the other, a complex toolbox, including various tools. But which toolbox makes constructing the car simpler? Counterintuitively... not the the simple toolbox. You can do it, in very hacky ways.
      It is common place to see extremely hacky solutions in C that just perform basic C++ actions, but in an incredibly unsafe and hard to reason about ways. For example, OOP. OOP is useful, particularly for GUIs. Now we have GTK, that hacks together objects in C using function pointers. But... the compiler enforces very little type checking on function pointers. And, there's no access modifiers. And, now a simple function call can actually result in memory errors, like segfaults. All to achieve what's trivial (and safe) in C++.
      Or, how about generic functions? Seems simple enough... take libc qsort(). We want to take in a generic function for comparison. But, we have to use void pointers. Now, we have circumvented the type system. We have pushed errors to runtime. Not only is this horribly inefficient in every sense of the word, it also doesn't make sense. 99% of the time the function we want to use is known at compile time, but we HAVE to force runtime behavior. Again we've opened the door to memory errors that have no reason to exist, and as a nice side effect our sort is ~10x slower than an equivalent algorithm in C++. Whoops!
      Or, what about generic containers? Also a very useful concept. Trivial, type safe, and memory safe in C++. In C...? Well, we could use void pointers. But this is verbose to work with, and again pushes behavior to run time. If we want a vector of int, we should enforce everything in the vector is an int... you can't safely do that with void pointers. So we need code generation. Ah, macros! Except, macros aren't templates. They aren't type aware. They're primitive. Yet again we're side stepping the type system and hoping that users use the macro correctly. If they don't, then whoops! We can use the newish _Generic... but these are fake generics. They're not general purpose.
      So we end up writing 10x as much C code to do simple and easy things in C++. And, along the way, we sacrifice our safety. All in the name of a "simple" language. It's not like these are cherry picked examples, these will pop up in literally every non-trivial piece of software. There are countless things that are trivial (and commonplace) to implement in C++, but nightmare-ish in C.

  • @Fluffy8unny
    @Fluffy8unny Год назад +4

    I've written c++ for years for my job and this video convinced me to advocate to rewrite that whole pos project in rust

  • @milomoisson
    @milomoisson Год назад +3

    unsafe { mem::transmute(val) } goes brrrr

    • @32th
      @32th Год назад

      unsafe fn poke(addr: usize, val: T) {
      *std::mem::transmute::(addr) = val;
      }

  • @dalekman8945
    @dalekman8945 Год назад +6

    This was a fantastic video - great story - great technical detail

  • @awabqureshi814
    @awabqureshi814 Год назад +3

    I loved the way this video was structured, amazing narrative

  • @stefanwaldegger2048
    @stefanwaldegger2048 Год назад +2

    The "explicity blessed by the C++ standard" pharse, made me subscribe to your channel

  • @MrMcyeet
    @MrMcyeet Год назад +2

    as a kotlin developer, I am literally crying right now.

    • @xynyde0
      @xynyde0 Год назад

      are you trying to learn C++?

  • @Sad_Cirno
    @Sad_Cirno Год назад +2

    you know I'm just gonna continue writing C

  • @brynyard
    @brynyard Год назад +8

    public_cast is actually occasionally useful, I use it for debugging code where I don't want to have to modify the original code (though I could), and the "alternative" is to #define private public

    • @Bolpat
      @Bolpat Год назад +2

      #define public private is UB. If you define any keyword or name in the standard library or use any name anywhere starting with underscore + capital letter except user defined literals, or any name with two underscores, that's UB for you.

    • @brynyard
      @brynyard Год назад

      @@Bolpat no shit, Sherlock, some compilers even flat out refuse to do it.
      And that’s why I mention the publiv cast sometimes is usefull, but with a very natrow scope and a very solid asterix.

    • @EvanOfTheDarkness
      @EvanOfTheDarkness Год назад +3

      @@Bolpat Don't fear the UB, embrace it! If you know *why* it's UB you can safely use it.
      For example the underscore names are UB because the standard library uses them, so defining them could break it. But so does defining any name that any header uses that you include. So it's actually a very well defined behavior.

    • @bootmii98
      @bootmii98 Год назад +1

      ​@@BolpatDoesn't preprocessing happen first? All the compiler proper sees is "public"

    • @strager_
      @strager_ Год назад +2

      @@EvanOfTheDarkness"If you know why it's UB you can safely use it."
      Only today. Tomorrow, you upgrade your compiler, or switch operating systems, and your need to re-do your careful analysis.
      That doesn't sound "safe" to me.

  • @OSSMaxB
    @OSSMaxB Год назад +1

    I am sooo happy that compilers allow warning on any use of C style casts. Combine that with -Werror and that particular problem is solved.
    Then again: Just use Rust 😉

  • @timseguine2
    @timseguine2 Год назад +6

    For the quake example, you should probably static assert on std::numeric_limits::is_iec559 Although it is unlikely to find an implementation where it is false.

  • @iandy_hd3743
    @iandy_hd3743 Год назад +2

    truly one of the best c++ videos ive seen. amazing :)

  • @JosemiteMC
    @JosemiteMC Год назад +1

    public cast can be great fun
    once used it to add iterators to a third party container class

  • @AJMansfield1
    @AJMansfield1 Год назад +8

    The public_cast might have great potential for evil, but sometimes it's ok to do what the ruling class calls evil in order to free an internal API that was greedily imprisoned ten namespaces deep in code no mere developer is permitted to modify.
    It's a better option, at least, than punning the class into a duplicated copy you've written to have the same byte layout, or memcpying at blind pointer offsets.

    • @_noisecode
      @_noisecode  Год назад +11

      Sometimes two wrongs make a right....

  • @Takyodor2
    @Takyodor2 Год назад +3

    Great story, and nicely told too, but I have to disagree. The most evil cast is the implicit cast we didn't ask for, silently converting something to another type, not because it's the right thing to do, but just because it could be done.

  • @mashtonish
    @mashtonish Год назад +2

    I imagine that most people "learn" c++ by seeing enough of the short videos and second-hand books of someone trying to describe individual details about the language, and then try to put what they remember into their code, hoping to have expressed what they wanted, before duckduckgoing corrections to errors to get their project to compile.

  • @JeremyGluckStuff
    @JeremyGluckStuff Год назад +1

    I used public_cast to write unit tests for private functions.

  • @JuddMan03
    @JuddMan03 Год назад +2

    The problem is multiple inheritance. The more I learned of the "magic" going on in the background to make it possible, the more I think it was not the best idea.

  • @JamesGustafson-dn3jj
    @JamesGustafson-dn3jj Год назад +1

    This is why I like Nim’s cast system. When using Nim, anything with the word “cast” both appears like a sore thumb in the code, and is guaranteed to be unsafe.

  • @perfectionbox
    @perfectionbox 11 месяцев назад +1

    I concur. I had a bug like that after making a class (which used to be a base) inherit from a new base. Compiler happily built but because the class also inherited a mix-in, the C-style casts got the wrong addresses and Bad Things happened; the mix-in was now sizeof(ActualBase) offset. Oh C++ how could you 😪

  • @Nick-wl1wl
    @Nick-wl1wl Год назад +1

    This was my favorite Halloween story

  • @NickEnchev
    @NickEnchev Месяц назад

    Amazing video, I love your presentation style.

  • @dmaster20ify
    @dmaster20ify 5 месяцев назад

    First let me thank you for that public_cast code. I never knew Cpp allowed that. I had a raw_cast that I had to implement class by class. Now I can just use public_cast and not have to manually implement anything.
    Second thing is; I always use C style cast, unless I need a specific cast. And I always use C style cast as a static cast or dynamic cast.

    • @_noisecode
      @_noisecode  5 месяцев назад

      Careful with that… C-style casts never do dynamic_casts, so if you’re looking for the safe+checked behavior of dynamic_cast, you won’t find it. All your C-style casts will always “succeed” but may give you a pointer you can’t safely dereference, and you won’t have any way to tell.

  • @TankorSmash
    @TankorSmash Год назад +3

    I use the Chapter 3 one relatively often (more than once, I guess) to force my way into the game engine's node system. It's nice when you're certain it's safe.

    • @Bolpat
      @Bolpat Год назад +1

      It's not safe. It's only not UB.

    • @TankorSmash
      @TankorSmash Год назад

      Could you help me understand what you mean by safe? @@Bolpat

    • @Bolpat
      @Bolpat Год назад +1

      @@TankorSmash Safe, in the programming sense, is that part of the language in which no UB can happen. For example, memcpy is not a safe function because it can have UB when called incorrectly. C++ is generally very unsafe, almost anything can give you UB when used improperly, the primary example being int overflow.
      As someone once told me unrelated to programming, “safe” is when you know it's harmless, not when it happens to be harmless; and I agree.
      If you really understand that game engine, it might actually be safe. Otherwise it's harmless (happens to be not UB) at best.

    • @TankorSmash
      @TankorSmash Год назад

      I can confirm that it is safe in that definition. Thank you for clarifying your point!@@Bolpat

    • @Bolpat
      @Bolpat Год назад +1

      @@TankorSmash I've worked with a programming language called D which has a fairly large safe part, while also offering to go low-level like C++. It's generally similar to C++, e.g. it has templates, static typing, constexpr, but also has an explicit notion of safe, as well as other properties functions can have, such as pure (referential transparency). It really opened my eyes to a lot of interesting ideas and fueled my creativity having worked with it. The main downside is you start hating working with anything else and you hate it when something is supposed to work, but doesn't due to a bug.

  • @himanshugupta7313
    @himanshugupta7313 Год назад +3

    The most evil was always the inheritance.

    • @Carewolf
      @Carewolf Год назад

      And double the inheritance, double the evil.

  • @jensnielsen8612
    @jensnielsen8612 Год назад +3

    As someone who has written a lot of code in C. This is why I'm scared of C++

    • @DrGreenGiant
      @DrGreenGiant Год назад

      Surely this video makes you more scared of C since you have less control of the cast you intended?

    • @randomcatdude
      @randomcatdude Год назад +6

      @@DrGreenGiant C-style casts are much less likely to go wrong in C though, since there are no insanely fancy complex types

    • @DrGreenGiant
      @DrGreenGiant Год назад +1

      @@randomcatdude I see what you're saying but I still think "can't" and "less likely" are worlds apart, in this example of casts. As for the rest of the complexity of C++ vs C, it's insane and getting worse, which C isn't. (much as it pains me to say as a C++ lover lol)

    • @JuddMan03
      @JuddMan03 Год назад +3

      @@DrGreenGiant Unlike C++, C does not change the address of pointers when doing casts, because it doesn't have inheritance, let alone multiple inheritance. C++ changed its behaviour.

    • @lucass8119
      @lucass8119 Год назад

      @@randomcatdude There are absolutely insanely complex fancy types in C. They're just written using Macros and void pointers. Wow, much better and easier to reason about!

  • @benloud8740
    @benloud8740 Год назад +3

    This is a quality video discussing fairly advanced issues and got all the technical details correct.

  • @KroltanMG
    @KroltanMG Год назад +4

    I have been learning C++ recently, and also like made up human languages. There is this thing called "Agma Schwa's Cursed Conlang Circus" going around, where people crate intentionally obtuse and painful languages, with idiotic rules like having grammatical genders based on Belgian givernment branches, and somehow C++ is still more bonkers inane aneurysm-inflicting than all of the entries together. 😂

    • @Greeem
      @Greeem Год назад +2

      "grammatical genders based on Belgian government branches" what does this even mean lmao

    • @KroltanMG
      @KroltanMG Год назад

      @@Greeem I have no fucking idea, but I understand it better than public_cast lol

    • @KroltanMG
      @KroltanMG Год назад +3

      @@Greeem jokes aside grammatical gender is when words have different forms or are used differently in sentences depending on some category of the thing they apply to.
      Classic example is gender gender (English actor/actress etc) but this conlang had different forms depending on what part of Belgium government had authority over the thing, if any.
      ruclips.net/video/Wr_tyM8pdXk/видео.html
      Or something like that I am not a linguist

  • @RepChris
    @RepChris 10 месяцев назад

    Fun fact: one of the main reasons i picked C++ up again after coding my home projects in Go for some time was to get a basic reinterpret cast working because fucking Go wont let me do that, but i just want to optimize the 16 bits of my array item down to 8, without having to iterate through the array and reallocating the memory, both of which i really dont want to do that (or can) because were edging at the capability of what fits into my 32GB of RAM with the 8 bit values alone

  • @somniad
    @somniad Год назад +2

    Yes! After learning about how the C-style cast works in C++ I had a small and slightly incredulous but ultimately easily resolved conversation with my manager in a PR, and my guess was that it would top this list. So easy to *think* you know what you're doing with it and so easy to break things.

  • @dr.robertnick9599
    @dr.robertnick9599 Год назад +2

    So bit cast ist how you also do things like receiving bytewise messages and interpret them as a struct or convert a struct into a byte array. I usually use memcopy or a union with the byte array and the target struct. Before I knew these techniques I just casted the pointer type into a struct pointer (In C).

  • @byrtoletov
    @byrtoletov Год назад +2

    I propose slitely better sintax for public_cast. The only thing I don't like is that one still has to specify the member type when declaring the accessor.
    template
    struct static_constructor
    {
    struct value_type{
    value_type(){ initialize();}
    void Do(){}
    };
    static value_type construct;
    };
    template
    typename static_constructor::value_type static_constructor::construct;
    class X{
    int a= 42;
    double b= 43.2;
    float c;
    friend void print(const X&b)
    {
    std::cout

    • @the_cheese_cultist
      @the_cheese_cultist 8 месяцев назад

      from a later comment of mine:
      template
      class access_private { constexpr friend auto public_cast(K) { return M; }};
      class CxSecret { constexpr friend auto public_cast(CxSecret); };
      template class access_private;
      C c;
      int x = c.*public_cast(CxSecret{});

  • @LarsDonner
    @LarsDonner Год назад +4

    That last example convinced me to never use inheritance ever again!

  • @JUMPINGxxJEFF
    @JUMPINGxxJEFF Год назад +3

    Nice video
    If you did another video about casts you may want to talk about const_cast a little bit, they're really funny if the pointed memory was really not writable

    • @_noisecode
      @_noisecode  Год назад +2

      Eh, too easy of a target. :) It's simply UB to write to memory that's not writable (or more generally variables that were 'born const').

    • @JUMPINGxxJEFF
      @JUMPINGxxJEFF Год назад +1

      @@_noisecode That's true. But maybe it's worth mentioning because UB are not known enough 🙂

    • @JuddMan03
      @JuddMan03 Год назад +1

      ​@@JUMPINGxxJEFF I Like the UB that spins the CPU fan backwards and spawns demons. Did you know that one?

    • @JUMPINGxxJEFF
      @JUMPINGxxJEFF Год назад

      @@JuddMan03 I don't buy it sounds like lots of fun, I'd really love to hear more about this one

  • @thewhitefalcon8539
    @thewhitefalcon8539 Год назад

    think-cell public range library has some varied casts including numeric casts, up and down casts, implicit_cast

  • @systemloc
    @systemloc 3 месяца назад

    I laughed so hard at this video. C was the first language I learned. Not that I write a lot of code in it, but I understand it very well. I’m much less comfortable in C++. I can do some basic things, but I don’t know a lot of the commonly used features. I think there’s more than one C style syntax that just does not translate nicely into C++. I think it is unfortunate that they can’t clean up the language , rather favoring backwards compatibility.

  • @benedeks815
    @benedeks815 Год назад

    I tested a few things. 0x61fe00 points to my object. If I cast the pointer to that of one of the supertypes, I get 0x61ffe04!
    It should be the same pointer, just with type punning. Someone thought this was a great idea. "Smart" stuff like this is why we can't have nice things.

  • @gamcd
    @gamcd Год назад +2

    Really well made video

  • @isaaccloos1084
    @isaaccloos1084 Год назад +2

    Another excellent video! Please keep up the great work.

  • @halalaluyafail3129
    @halalaluyafail3129 Год назад +2

    public_cast can be implemented with friend functions, i.e. declaring the function outside of the class then doing a friend definition from within the class where the pointer to the private member is returned

    • @antagonista8122
      @antagonista8122 Год назад +3

      Then it has nothing to do with generic public_cast, because you, as an author of the class, explicitely granted access to the internal structure of your class.

    • @JosemiteMC
      @JosemiteMC Год назад

      ​@@antagonista8122oh you don't declare it friend in the class with the private member. You declare a friend method in a helper class that returns the member and then somehow call that through argument dependent lookup.

    • @halalaluyafail3129
      @halalaluyafail3129 Год назад +2

      @@antagonista8122 Not from inside of the class you're stealing from, but having a separate class that takes a template parameter and defines an external function using friend. Then do the explicit instantiation of the class with the pointer to member and it will work.

    • @the_cheese_cultist
      @the_cheese_cultist 8 месяцев назад

      my implementation:
      template
      class access_private { constexpr friend auto public_cast(K) { return M; }};
      class CxSecret { constexpr friend auto public_cast(CxSecret); };
      template class access_private;
      C c;
      int x = c.*public_cast(CxSecret{});
      nice! this approach also allows avoiding the type through auto and making it constexpr.

  • @at-sushi
    @at-sushi Год назад

    I think C++ evangeilsts have forgot this.
    Another case is const_cast which remove const from const variables.

  • @ExCyberino
    @ExCyberino Год назад +11

    Tha's some good shit bro.

  • @mintx1720
    @mintx1720 Год назад +1

    One thing I miss about not being a rust dev is being able to do stupid shit that's absolute nonsense in C++ and feel smart about it.

  • @duckydude20
    @duckydude20 Год назад +2

    cpp is trippy. people who use all this are wizards...

    • @nyrization
      @nyrization Год назад

      NO THEY ARE BLIND AND HAVE ZERO UNDERSTANDING WHAT THEY DOING AND WHY

    • @JuddMan03
      @JuddMan03 Год назад

      Yeah, these are examples of things that probably should not be used.

  • @yaksher
    @yaksher Год назад +8

    @8:40 This feels like a real hostile code design view on the nature of private/public variables lol
    @14:00 Again, I feel like it's the user's job to know what they're doing if they're accessing the internals of a library, but this frames it as if it's a conflict between the library developer and the library user or whatever instead of a collaborative effort.

  • @nyyakko
    @nyyakko Год назад

    man this is why love this language, so much fun stuff to play around with!

  • @kipchickensout
    @kipchickensout Год назад

    I'm not even scared by the casts in particular, I'm scared by the whole language and the syntax, thank god C# only has a few easy to learn casts

  • @savire.ergheiz
    @savire.ergheiz Год назад +1

    Its all comes down to miss used 😂
    Its there for a reason but devs usually with the lack of proper understanding used it as much as they like rather than it was supposed to.

  • @skeleton_craftGaming
    @skeleton_craftGaming Год назад

    Speaking of cont_cast : I totally love how the ISO standard basically says if you're using const_cast, you've basically f***** up....

  • @ryansullivan3085
    @ryansullivan3085 Год назад +2

    I thought I knew the dangers of C-style casts.
    My compiler throws an error when C-style casts interfere with const-ness. I am appalled that this practice isn't standard!

  • @thygrrr
    @thygrrr Год назад +7

    Looks like multiple inheritance is the real villain here.

  • @josiethompson5739
    @josiethompson5739 Год назад

    first problem can be solved with concepts/metaprogramming with something along the lines of
    ```cpp
    template
    void foo(const T& x, const U& y);
    ```
    Though this particular example requires the derived to come after the base, but I think you can provide a partially ordered specialization to get around this - eg:
    ```cpp
    template
    requires (not std::same_as)
    void foo(const U& x, const T& y) { foo(y, x); }
    ```

  • @IllidanS4
    @IllidanS4 Год назад

    Hah, the C-style cast laughs in the face of private inheritance!

  • @MallardDuck77
    @MallardDuck77 Год назад

    For the pun_cast implementation you mentioned UB in C++ when reading an inactive union member. While this is true, the standard enforces this but technically most if not all modern C++ compilers support it, and even use it in their implementations (short string optimization). I guess it depends on how portable you need your implementation to be.

    • @_noisecode
      @_noisecode  Год назад +1

      I do believe type punning through unions tends to be “supported” by compilers yeah, but mostly just due to necessity, since so much code relies on it. If we want to one day allow compilers to have true freedom to do all the amazing optimizations they want to do to our code, we need to move away from “eh, it’s not technically allowed but it works in practice,” and toward what is strictly allowed. That sentiment does break down in lots of cases though, since C++ doesn’t even always give you the tools to express yourself both efficiently and legally. It seems like the committee is working hard on this though; the object model has been a big focus of both C++20 and 23.
      I’m curious if SBO string implementations actually type pun through unions. I understand that a union is likely used for the storage, but since SBO is either active or it isn’t, it seems like the access to the different variants would be non-overlapping. I’m curious why an implementation would ever access data from the inactive state.

    • @MallardDuck77
      @MallardDuck77 Год назад

      @@_noisecode If I'm not mistaken, SBO is specifically for vectors, where the type it is storing is not known, and thus restricts any funny "exploits " you can do.
      But SSO is specifically for strings and has the unique ability to only care about the char type (well all the different char types I guess). There is incredible bit manipulation done to achieve this, reserving the LSb as a flag to check whether it's short or long, and so between the 2, you only allocate even lengths to satisfy this (which also turns out to be more efficient anyway). There's much more but it wouldn't suffice trying to explain it in a RUclips comment.
      I believe libc++ implements it this way but MSTL and libstdc++ don't and instead use an approach almost identical to SBO.
      If you're interested I tried to write a legible version: github.com/PremanJeyabalan/stdcpplib/blob/main/src/String.h , but please know I'm just a undergrad student who doesn't write C++ professionally (yet). I'd love to hear your thoughts if any.

    • @_noisecode
      @_noisecode  Год назад +1

      Ah right, I knew about this trick at one point but had forgotten. For what it's worth, I believe this could be done without undefined behavior; since in your implementation, the size is the first byte of the short variant, and it's legal to reinterpret_cast to inspect the byte representation of any object, you could just reinterpret_cast(the_entire_union) and then inspect the resulting first byte, which will be the value of your short_t::size_flag, accessed legally even when the string is long.
      Nice string implementation! It's awesome that you're digging into this stuff so deeply at an undergrad level, and I'm sure any number of places will very eagerly hire you up as soon as they can. :)
      Lastly, the term SSO is just a special case of SBO--they both just refer to storing data inline under a certain capacity rather than spilling to the heap. You're right that if you have knowledge of the specific types involved you can often do better than a generic implementation (so a string can be better optimized than a small_vector), but terminology-wise, it's correct to say either that std::string has a Small Buffer Optimization or a Small String Optimization (or a Short String Optimization or whatever else); they're all interchangeable terms.

    • @MallardDuck77
      @MallardDuck77 Год назад

      ​@@_noisecode You are definitely right! I will make it a point to change that to use a reinterpret_cast instead, never thought of that before.
      Ah your SBO explanation helped alot as I was struggling to realise the relationship between it and SSO. A string is just a char buffer anyway so it makes sense that the umbrella term is SBO and SSO being a special case of that.
      Thanks so much for taking a look at my code btw, and love the vids you've made so far. I close a video pretty quickly when people unnecessarily start bashing C++ for whatever reason and why Rust is better (ThePrimeagen would be a good example), but the way you cover the concepts are fun to follow and I always gain a deeper understanding of the language after watching them. Personally, the pedantic nature of C++ is exactly the reason I love it, except when it then comes to adding 3rd Party Libs to a project.
      Look forward to watching whatever you release next! Cheers.

  • @slime_stick
    @slime_stick Год назад +1

    Great video!

  • @LaynaStambaugh
    @LaynaStambaugh Год назад

    "It's the reason I don't cut my sandwich in half with a chainsaw, it's a reason I don't hang out in my computer as root..."
    Me who just migrated from Windows and I didn't make a root profile so I'm technically always as root: *nervous laughter*

  • @VioletGiraffe
    @VioletGiraffe 8 месяцев назад

    Returning to this video to look up public_cast implementation so that I can access internals of a class inside a test case for verification.

    • @_noisecode
      @_noisecode  8 месяцев назад +1

      In my effort to do good, I’ve unleashed great evil upon the world

    • @VioletGiraffe
      @VioletGiraffe 8 месяцев назад

      ​@@_noisecode, haha. I have decided that you are right and no one should wield such power. It was funny how the code broke Intellisense in Visual Studio 2022, though.

    • @_noisecode
      @_noisecode  8 месяцев назад

      Yeah, this is a little-known feature of Intellisense. It doubles as a linter because it craps the bed when your code becomes too cursed.

  • @lostsauce0
    @lostsauce0 Год назад +4

    Chapter 1 was enough to reaffirm my distaste of C++. If I'm gonna dive lower level I'm gonna learn Zig

  • @MarekKnapek
    @MarekKnapek Год назад

    The type punning cast from float to int and back could be done in C++14 constexpr without undefined behavior (maybes even in C++11 constexpr). Because int could be "deconstructed" to individual bytes by repeatedly shifting by eight and masking by hex ff. You can do this to float too, but it is more, very more complicated. Basically converting int into float mantissa equivalent and then repeatedly dividing by ten or two. It should work for any float implementation - I'm thinking here IEEE754 and VAX floats.

  • @samalocpp
    @samalocpp Год назад +1

    Well, you should have commented that std::bit_cast has the limitation of both From and To types being trivially copyable, and their sizes must be equal

  • @LuizDahoraavida
    @LuizDahoraavida Год назад

    public_cast, for when blowing your leg off is not enough

  • @aidangarvey7049
    @aidangarvey7049 Год назад

    Honestly, I'm probably still going to use c-style for primitive types. Like if I'm passing an int and a float to std::max, it seems fair to use (float) on the int.
    That being said, I'm definitely never going to use it on classes again

  • @the_cheese_cultist
    @the_cheese_cultist 8 месяцев назад

    i've got a way to avoid specifying the type in public_cast! and this version is also constexpr. the idea is to create a function returning the value, which allows us to use auto.
    template
    class access_private { constexpr friend auto public_cast(K) { return M; }};
    class CxSecret { constexpr friend auto public_cast(CxSecret); };
    template class access_private;
    C c;
    int x = c.*public_cast(CxSecret{});
    i tried making K a template type for public_cast to allow typing it as public_cast, but i haven't managed to do that.
    this uses 0 extra memory and is constexpr. the compiler properly inlines everything as if this was normal access to a public variable.

  • @CielMC
    @CielMC Год назад

    The content is great and all, but the writing though, insane

  • @scarymonkey3496
    @scarymonkey3496 Год назад

    This is the difference between soft dev and soft eng. I must face the fact that I will never be this good.

  • @WishMakers
    @WishMakers Год назад

    This video was beautiful. I suppose it makes sense, but it is *really truly unfortunate* that the C casts also become the most tempting ones to use lmfao.

  • @ifnullreturn1
    @ifnullreturn1 Год назад

    With great power comes great responsibility... The tools aren't the issue, but rather the operator which wields unknown power :-)

    • @michaelcirco3948
      @michaelcirco3948 Год назад +2

      Nah. In the case of C÷÷ the tool is very much the issue. It's designed with a lot of good intentions on top of poor choices. Too much behavior is undefined yet allowed at compile time. That's bad design.
      I don't totally fault Bjarne and the other keepers of C++. Someone had to stumble in order for us to know where we could falter, but C++ has simply accumulated too many missteps for its own good.