Type Punning in C++

Sdílet
Vložit
  • čas přidán 28. 04. 2018
  • Patreon ► / thecherno
    Twitter ► / thecherno
    Instagram ► / thecherno
    Discord ► thecherno.com/discord
    Series Playlist ► thecherno.com/cpp
    Thank you to the following Patreon supporters:
    - Dominic Pace
    - Kevin Gregory Agwaze
    - Sébastien Bervoets
    - Tobias Humig
    - Peter Siegmund
    - Kerem Demirer
    Gear I use:
    -----------------
    BEST laptop for programming! ► geni.us/pakTES
    My FAVOURITE keyboard for programming! ► geni.us/zNhB
    FAVOURITE monitors for programming! ► geni.us/Ig6KBq
    MAIN Camera ► geni.us/t6xyDRO
    MAIN Lens ► geni.us/xGoDWT
    Second Camera ► geni.us/CYUQ
    Microphone ► geni.us/wqO6g7K

Komentáře • 331

  • @vertigo6982
    @vertigo6982 Před 5 lety +322

    This must be the "scary basement" of C++.

    • @xKaihatsu
      @xKaihatsu Před 3 lety +8

      Type punning is real fun to mess around with.

  • @patulle2154
    @patulle2154 Před 6 lety +160

    "I guess I am pretty sane"
    I have my doubts

  • @nimrodhawk4011
    @nimrodhawk4011 Před 3 lety +100

    This is one of the most essential videos Cherno has done, imo. It really demonstrates the fundamentals and power of C++ memory usage/manipulation. Good stuff, thanks for the “pointers”.

    • @student99bg
      @student99bg Před rokem +4

      He didn't mention undefined behavior in this video. A lot of code here has undefined behavior. You need to walk on a thin line if you want to write code like this and avoid undefined behavior. I have read Joe Zbiciak's answers and comments on Quora about what is defined and what is undefined (at least for C, usually what is true for C is also true for C++ but here we are on a thin ice territory). If you don't know by heart what is and what isn't undefined behavior when it comes to things like this you can't guess it.

  • @rakma525
    @rakma525 Před 2 lety +66

    This technique is used in Quake's notorious fast inverse square root function. It converts a float into a long in order to use bit manipulation.

    • @andrefaustino5514
      @andrefaustino5514 Před rokem +6

      I finally understood better what was done in that Quake video

    • @robertoze
      @robertoze Před rokem

      But Carmack said "SIMD is not a useful thing", and now we use glm instead of bitwise magic. :D

    • @magellan124
      @magellan124 Před 8 měsíci +1

      Carmack is a genius

    • @softed
      @softed Před 6 měsíci

      ​@@magellan124 carmack didn't invent it, he found out about it from someone else

    • @magellan124
      @magellan124 Před 6 měsíci

      @@softed who?

  • @michaelclift6849
    @michaelclift6849 Před 3 lety +28

    Structure padding / member alignment, definitely needed a mention here.

  • @DashwoodIce9
    @DashwoodIce9 Před 4 lety +78

    This is my favorite episode in the series. If someone asks me how can programming make someone feel powerful, I'm going to refer them here.

    • @AbarajithanGnaneswaran
      @AbarajithanGnaneswaran Před 3 lety +3

      I do this regularly and I know exactly what you mean!

    • @jakub7321
      @jakub7321 Před 3 lety +8

      This is my favourite comment. If someone asks me if I have seen a good comment before, I'm going to refer them here.

    • @mykolatetiuk6661
      @mykolatetiuk6661 Před 3 lety +7

      ​@@jakub7321 This is my favorite sub-comment, which points to the favorite comment. If anyone asks me about why C++ is so wonderful, I'll tell them about pointers and point to this sub-comment, which sill refer to the parent comment.

    • @igorthelight
      @igorthelight Před 2 lety +6

      @@mykolatetiuk6661 I really don't want to prove something but here is a C# equivalent code. Maybe someone doesn't even know that you could do that in C# too ;-)
      using System;
      class Program
      {
      struct Entity
      {
      public int x, y;
      }
      unsafe static void Main()
      {
      Entity e = new Entity{x = 5, y = 8};
      int* position = (int*)&e;
      int y = *(int*)((byte*)&e + 4);
      Console.WriteLine(position[0] + ", " + position[1]);
      Console.WriteLine(y);
      Console.ReadLine();
      }
      }

  • @OzieCargile
    @OzieCargile Před 3 lety +64

    I love how you are getting into the advanced features of C++ in such a straightforward way. These have long been shrouded in verbose mystery, and you have such a beautiful way of demystifying them in simple terms. Thank you for being an amazing teacher.

  • @jimmylander2089
    @jimmylander2089 Před 3 lety +14

    The way you passed the ints as an array blew my mind

  • @Xxp0r
    @Xxp0r Před 6 lety +32

    I love type punning network packets, it allows me to overlay a struct to parse out its members (without the padding of course).

  • @WyMustIGo
    @WyMustIGo Před rokem +13

    Before some newbie programmer does any of those pointer tricks, you should also teach them about packing because when you start mixing types inside a struct and/or switching platforms, the code will not work if the padding changes. I've been in the industry as a ASM/C/C++ programmer since the mid 80s, and to be honest other than when messing around, people don't do stuff like that in production code (unless they want to be fired).

  • @michaurbanski5961
    @michaurbanski5961 Před 6 lety +4

    Hey!
    I've started watching your videos only recently and I love the way you explain things, everything is so clear here unlike most YT channels.
    In one of the c++ videos (how to write a c++ class) you wrote a LOG class but at the end said "that is absolutely not how i would write a log class". If that's possible in the future, I would love to see a video or a series of videos where you write an actual short project step by step.
    Have a nice day and keep up the great work :)

  • @raymondyoo5461
    @raymondyoo5461 Před 6 lety +11

    I learn much further and deeper with youe videos than I could learn during my class.
    Concise explanation for complicated concepts.
    I will review C++ with these videos and I hope I get more used to C++.
    Thank you very much for your work!

  • @kissmyoradora83
    @kissmyoradora83 Před rokem +4

    Type punning is great for me when I'm storing data in a memory IC one byte at a time on a micro-controller. Turn a double/struct into a char array of the data-types total sizeof() and loop through.

  • @AKatyal90
    @AKatyal90 Před 2 lety

    All your videos are super useful, they have just the right length, neither too short, nor too long

  • @Kricen
    @Kricen Před 6 lety +38

    I think beginners often get into trouble with strong types and C++ allows tricks like this which makes people try to go around the type system for no good reason in most cases. When you become more experienced you have less and safer type conversions, because the type system starts to make sense.

    • @loli42
      @loli42 Před 4 lety +16

      idk why everyone thinks that "beginners" just go around type punning shit for no reason. what do you think they're doing? you think static typing is so difficult a concept to grasp that, instead of just using the type system like they're supposed to, novice programmers just think it's a good idea to store all their scalars as an int64 and fucking type pun into them? two year old comment nigga ass.

    • @zes3813
      @zes3813 Před 2 lety

      wrggg

    • @puppergump4117
      @puppergump4117 Před 2 lety

      @@loli42 Maybe someone who doesn't even know what a type pun is (like me) would try to use % on a double by first using a long long then casting that way too big long long into a double without losing a bunch of data. As far as I know, cpp doesn't give warnings for bad or unnecessary casting.

    • @loli42
      @loli42 Před 2 lety

      @@puppergump4117 that's not type punning, it's casting, and c++ compilers most certainly do emit warnings for implicit narrowing conversions because msvc won't shut the fuck up about it

    • @puppergump4117
      @puppergump4117 Před 2 lety

      @@loli42 I obviously know that. Which is why I explicitly said 'casting'. After casting loses double data, I try type punning. And from MY experience, there were no warnings.

  • @Classic336
    @Classic336 Před 4 lety +61

    The "double value = *(double*)&a;" reminded me of
    "i = * ( long * ) &y; // evil floating point bit level hacking"
    from Quake III Arena source code.

    • @lincolnsand5127
      @lincolnsand5127 Před 4 lety +2

      Both are not legal ways to type pun in C or C++. So. They are at least similar in that way.

    • @SandFoxling
      @SandFoxling Před 3 lety +2

      You refer to it like its some popular joke not some random line of code burried within a game's source code... I love it XD

    • @totallynuts7595
      @totallynuts7595 Před 3 lety +4

      @@SandFoxling it is a popular joke, what do you mean? The quake 3 fast inverse square root code is legendary. (For the comments more than the actual code)

    • @SandFoxling
      @SandFoxling Před 3 lety

      ​@@totallynuts7595 I figured, I guess I'm not old enough... I have read 'masters of doom' but that's about the extent of my knowledge on the early days of ID and their legendary feats.
      I guess you still would have to call that joke within a specific circle to actually cast it into a popular type.

    • @totallynuts7595
      @totallynuts7595 Před 3 lety

      @@SandFoxling i'm not that old either, compared to the games. I just like Doom and Quake

  • @bravet
    @bravet Před 3 lety +2

    This is awesome, more indept videos like this would be very nice! Good work!

  • @michaldvorak2230
    @michaldvorak2230 Před 6 lety +216

    I clicked for C++ puns.. utterly disappointed :|

    • @poryg5350
      @poryg5350 Před 5 lety +2

      In programming you have to construct everything yourself, I thought I knew that... Unless of course there's a preconstructed library.

    • @aryanmediratta955
      @aryanmediratta955 Před 5 lety +13

      Variables can have multiple "meanings" depending on the datatypes they are cast to.
      Puns, you see?

    • @briannoel5698
      @briannoel5698 Před 3 lety +12

      I think you mean, utterly "disappointered" ;)
      Sorry...

  • @Gunslinger962
    @Gunslinger962 Před 6 lety +98

    *insert puns here*

  • @mikedoeren5960
    @mikedoeren5960 Před 11 měsíci

    That int y example cracked me up. Great video!

  • @litmus3742
    @litmus3742 Před 2 lety +8

    It's worth noting that type punning via arbitrary types, even if they're the same size has undefined behaviour. You can argue that it might appear to work in some situations or with optimisations turned off, but it's generally just not a good idea. Enabling optimisations, compiling to a different platform, adding a comment above the code etc... could break the code. Your initial Entity example for example violates the strict aliasing rule and isn't legal C++.

  • @TKcKoucher
    @TKcKoucher Před rokem

    Absolutely incredible content..

  • @peiciuioan9612
    @peiciuioan9612 Před 6 lety +1

    Thanks for this video!

  • @deepakprajapati2635
    @deepakprajapati2635 Před 3 lety +1

    mind blown, made my love for C++ increase even more!!

  • @stanislavspatari2960
    @stanislavspatari2960 Před 6 lety

    keep the good work, thx for everything

  • @SparxableTunes
    @SparxableTunes Před 6 lety

    Diggin it man, I'm on Ep. 7; constructing your sparky engine. It has been, thus far, all good in the hood. If there are any surprises, especially considering how much development Emscripten has undergone between then and now, I would like to (somehow) send you information of these changes, or perhaps get the 411 from you yourself on what to watch out for, ahead of time. Quality channel, rock on!

  • @IllumTheMessage
    @IllumTheMessage Před 6 lety

    Really informative, thanks!

  • @damian_smith
    @damian_smith Před 9 měsíci

    Really useful to know - thank you.

  • @twitchEmailOkay
    @twitchEmailOkay Před 8 měsíci

    hes good! "I guess I am pretty sane" even self reflective!

  • @graemehdev
    @graemehdev Před 4 lety +5

    Dodgy talking about that without mentioning strict aliasing aka what happens when you think you changed your struct values, but the compiler just updated a register. Suddenly the memory address is not the value you think it is

  • @ultimatesoup
    @ultimatesoup Před 8 měsíci

    Generic memory pools to take advantage of cache locality and memory fragmentation are times when it's absolutely necessary to directly tell the compiler how to interpret a type

  • @martincets8334
    @martincets8334 Před 6 lety +7

    Hey Cherno, It would be really cool if you covered the subject of unions in a video.

  • @FrostyChilli
    @FrostyChilli Před 10 měsíci +1

    A very nice video! This actually provided me a different angle to understanding pointers.
    When I follow along with the code I usually add comments about what Cherno said and what I thought.
    I hope the following exempt will help someone else get a different view on pointers as well.
    So, in my mind...a pointer is like a tool that specifies:
    1. How many bytes to read? (int pointer reads 4 bytes, double pointer reads 8 bytes, a pointer of a struct with size 27 bytes reads 27 bytes).
    2. From where should we start reading those amounts of bytes?
    This kinds of makes our issue clear (talking about "double value = *(double*)&a;" here). We initialized a variable of size 4 bytes (int a = 50). So 4 bytes somewhere in memory were allocated to represent the value 50. In order to read these 4 bytes, we need a 'reader' that knows to read exactly 4 bytes (int pointer), and also from where to read them. However, we constructed a 'reader' that reads 8 bytes (double pointer). The starting position of these readers are the same. However, the 8 byte reader reads 4 bytes more than was specified when we wrote int a. And so, since the other half was not specified, in addition to the 4 specified bytes, we also read unspecified bytes from there. And this will lead to us getting an unexpected result. While the end result does correctly allocate 8 bytes (the newly created double variable), the issue is that we read 4 additional bytes, which we did not specify ourselves, and thus the outcome will be random.

    • @Byynx
      @Byynx Před 8 měsíci

      Try to think that when you cast pointers or a variable adress (&var) you are just saying to the compiler "Hey use this memory adress to read or write and trust me that everything will be fine". You can have 10 different vars/pointers pointing, reading and writting to that same memory space that the compiler doesn't care if you this C-Style casting. But if you do a mistake you'll have undifined behaviour or memory leaks will emerge.

  • @user-tz5bz4cz9q
    @user-tz5bz4cz9q Před 3 lety

    Thanks The Cherno for your cool video!

  • @MrUmang40
    @MrUmang40 Před 6 lety

    I am so thankful to you just because of this video..........thanks CHERNO

  • @VargoViaty
    @VargoViaty Před 3 lety +2

    I cant believe I'm watching this right now lol.
    I spent two nights to actually come up with this same idea to solve a problem and now I find out it was actually a thing

  • @andrey7268
    @andrey7268 Před 2 lety +3

    This video is missing a big red neon warning at the very beginning that most things described in it are actually undefined behavior and should never be done. This code *will* break and cause a lot of grief.

  • @jeremygong4190
    @jeremygong4190 Před 2 lety

    9:56 this is pretty smart! actually its principle is to shift the pointer by "sizeof(&e.x)" units away from the beginning of the &e pointer. So your point is now directly pointing at the beginning of address of y, then you dereference it using int form (allocate the memory size and format) from the "address" you just got, so to get an actual reading of that value.
    just before you dereference it (the * on the very left) it was all very cleaver pointer address maneuver! I have learned so much from your vids!!!!!!!!!!!!!! you are damn cool!

  • @kobimizrahi9397
    @kobimizrahi9397 Před 6 lety +1

    Love your videos. Could you make one on how to package and distribute a c++ app soon?

  • @foomoo1088
    @foomoo1088 Před rokem

    It is super useful for things like deserializing bytes from a source (file, internet stream, etc.)

  • @darthnegativehunter8659
    @darthnegativehunter8659 Před 4 lety +7

    you didn't mention "offsetof"
    it's a really useful function for type punning.

  • @lukehanscom482
    @lukehanscom482 Před 6 lety +2

    I would like to see some file input and output...great and thorough videos love to see more

  • @TW19567
    @TW19567 Před 7 měsíci

    As part of my studying of computer architecture, the one thing I have learnt is that we want to copy as little as possible. If data exists anywhere in memory that is useful to different parts of a program then use pointers to point to its address location. Essentially what this is doing is allowing us to treat that data as a different type depending on the context in which it is being used and the pointer says how to interpret the data, i.e the pointer says interpret this data as a float or an integer.

  • @zxnnightstalker2289
    @zxnnightstalker2289 Před 2 lety

    I love type punning really!.

  • @haru02w89
    @haru02w89 Před 9 měsíci

    I love having a type system, specially if you can change it along the way

  • @xtc564
    @xtc564 Před 6 lety +1

    Hi! You could do a tut' about memory pools and create simple class for that. In the end you could give some advices to make a advanced pool or even make a new video about the advanced memory pool. I think, with your explanation we could go on a next level of efficient game programing.

  • @michaelswahla4927
    @michaelswahla4927 Před rokem

    Finally, a feature which cherno actually uses!

  • @guiller2371
    @guiller2371 Před 2 lety

    My phone screen is too tiny to appreciate the code.
    This is cool. It's kind of deeper than casting.

  • @BlackJar72
    @BlackJar72 Před 6 lety +7

    I see a few very special uses, so I consider it very useful, though I first was introduced to the idea using unions.
    I often associate type punning with things like freelists, and have suspect its important for how some libraries get around endianess to use their own byte orders. I've also used like this to change a function for hash strings into one that hashes any data type (though preferable none that include pointers). Very useful, though definitely not something you just do everyday.

  • @lukenukem8028
    @lukenukem8028 Před 4 lety +2

    [11:16] This is one way C++ blows my mind.

  • @huiguo1489
    @huiguo1489 Před 4 lety

    This is insane, but awesome!

  • @liorglass3850
    @liorglass3850 Před 5 lety +1

    int and double are not promised to be address aligned, I think that punning double->int will always work but not the other way around

  • @UserUser-pv2wo
    @UserUser-pv2wo Před 3 lety

    this is the super important topic. I studied it initially from Jerry Cain's lectures @ stanford....

  • @joseponce6250
    @joseponce6250 Před 2 lety

    thanks!

  • @01001000010101000100
    @01001000010101000100 Před rokem

    It's one of the coolest features of C and C++. Something I didn't have in other languages and IDK if I understand the term correctly, but it seems like a zero cost abstraction.

  • @DarkCowMooMoo
    @DarkCowMooMoo Před rokem

    This is actually a powerful manipulation from C. As a C programmer learning C++, I am super satisfied Cherno covers it.

  • @KaenguruGaming1
    @KaenguruGaming1 Před 6 lety +10

    This is undefined behavior. It violates the strict aliasing rules. This is only allowed if you are punning to std::byte, char, unsinged char, or a type "similiar" to the one you are punning from. Use memcpy instead. It'll get optimized away so don't worry about overhead.

  • @alson3847
    @alson3847 Před 4 lety

    Also you can use unions for treating same memory as different types

  • @dave7244
    @dave7244 Před 2 lety

    You can do the same thing kind of in JavaScript with Objects. Every Object is really a sparse array so you can just pull stuff out of the object as if it was an array.

  • @MsJavaWolf
    @MsJavaWolf Před 5 lety +4

    Afaik converting structs to arrays isn't always safe, because og alignment.

  • @karlsteinmeister7245
    @karlsteinmeister7245 Před 6 lety +16

    i am pretty new to c++, but i love pointers soo much. you can do so many things with them, even void pointers, which i thought at the begining don't make any sence :P btw thanks for all the c++ vids cherno, i like that you explain what happens in the background as well, it makes things make sence ;) :D

    • @asustufa1515
      @asustufa1515 Před 6 lety +1

      What are you doing on this video if you're new to C++? Go watch older videos lol

    • @bartekrembisz573
      @bartekrembisz573 Před 6 lety +4

      So in your opinion if you watched all of Cherno's videos you are no longer a beginner at C++?

    • @fredxu9826
      @fredxu9826 Před 6 lety +1

      pointers were great, but I've almost never used any pointers since c++11 and STL, because they tend to generate bugs and crash programs (if you don't handle them well). pointer-related garbage collection is such a pain.

    • @karlsteinmeister7245
      @karlsteinmeister7245 Před 6 lety +1

      garbage collection? i thought that was only a thing in managed languages like c# (i think that is what you call them). I don't see how garbage collection is a Thing in c++ (unless you run that managed, which i think is somehow possible), i mean that is also a big reason why i came to c++ ... so i can manage memory myself, and not worry about constructing any referance type objects (so heap allocated) in any part of my programm that gets run quite often. (so game a loop, in my case that was block placeing)
      it was just too annoying to deal with
      EDIT: removed a word "a" which was somewhere it shouldn't have been XD

    • @fredxu9826
      @fredxu9826 Před 6 lety

      yeah I think I misused the word 'garbage collection'. I don't mean that C++ has a garbage collector, only that the syntax of C++11 completely (unless you have to deal with some legacy code) makes using C's malloc(), free(), or C++98's 'new' and 'delete' unnecessary. All those works are done in the built-in containers and classes, so it pretty much behaves like a 'garbage collector' from a programmer's perspective. (not a real garbage collector thought, more like an API-level garbage collection that prevents memory leak)

  • @swoopertr
    @swoopertr Před 6 lety

    you are the best!

  • @marcinlesniewski4571
    @marcinlesniewski4571 Před 3 lety

    Elegancko

  • @user-be9wp2vu2s
    @user-be9wp2vu2s Před 6 lety

    I love ur vids keep up the good work, btw how old are u?

  • @risingliberty6227
    @risingliberty6227 Před 6 lety

    I think a video about exceptions wouldn't be so bad to have either

  • @Rose_Harmonic
    @Rose_Harmonic Před 2 lety

    once I get to the casting video I feel I will want to watch the series over again just to understand the fifty occasions that casting has already come up :P

  • @pascalrottier4783
    @pascalrottier4783 Před 4 lety +12

    I noticed the memory was little-endian. I assume endianness is a factor to consider here. A 4 character string, interpreted as and int, will give you radically different results on a Linux x86 machine compared to a Linux Sparc machine. Or am I wrong?

    • @moczikgabor
      @moczikgabor Před 2 lety +2

      Not always, but usually yes. ;-)
      Endianness is not an operating system thing, so accessing memory as int pointer to index the int struct elements should work the same on Linux x86 too and on Sparc, MIPS, etc too without worrying these.
      But this is only true, if you cast elements back to the types they originally was and if you work with the data in the same program only.
      The problem starts, when these data leave your program in any way.
      If you serialize an int, send the chars over a network into a different (endianness) machine, then you read it back there and cast back to an int. Then it will be backwards. This is the reason why there are htons() and nthos() functions exists for TCP/IP networking. The network byte order is standardized, and if the system you compile on is in the same byteorder then these functions do nothing, if it is different then they swap the data.
      Another issue is that sizeof(int) is implementation-defined. It could very probably happen that if you send ints from a PC to a 8-bit microcontroller where int could be just 8-bits then you also have a problem. Theoretically you could even have a problem, when you save data to a file, and open it on the exact same machine and OS, but with a different program, which might be compiled with a different compiler. This is why one should avoid using int, and use fixed size types like uint32_t instead.
      Another issue is memory alignment and structs. Some architectures, ARM for example doesn't like unaligned memory access, so an 32-bit integer should reside on 4 byte address boundary only.
      So if you have a struct { char, uint32_t } then you have 8 byte allocated, the first byte is a char, 3 byte padding, then 4 bytes of int.
      If you serialize this struct by indexing it's memory you may expect that you have 5 bytes of data, but instead you have 8, because of the padding.
      This is a problem when you want to map a struct to a hardware register or some kind of network data.
      Some compilers have a possibility to tell them to generate packed-struct to avoid padding. Non-standard, non-portable, of course. attribute((packed)) in GCC, #pragma pack in others, etc...
      And if the target CPU really can't do unaligned access, then the compiler will generate two aligned reads for that unaligned int then shifts the bits to assemble it for you. Performance issue...
      All of this can happen and this is why this considered dangerous and you should not do it unless you are develop a low-level system in a specific environment and you know exactly what are you doing.

    • @gabrielbarrantes6946
      @gabrielbarrantes6946 Před 6 měsíci

      Yeah, this is not portable!

  • @arsnakehert
    @arsnakehert Před 3 lety

    lmao I had no idea you could check out memory like that in the VS debugger, though it makes total sense

  • @lincolnsand5127
    @lincolnsand5127 Před 4 lety +32

    This is undefined behavior btw. You should be very careful with this because different compilers will act in different ways. You can run into issues relating to lifetimes and alignment.

    • @OFfic3R1K
      @OFfic3R1K Před 4 lety +7

      The whole experience of programming in C can be summarized as undefined behaviour. As far as I remember alignment isn't really an issue, of course it would be if you wrote the code that was demonstrated, but there are easy ways to deal with alignment if you actually want to dive into this unique flavour of BDSM.

    • @lincolnsand5127
      @lincolnsand5127 Před 4 lety +5

      @@OFfic3R1K The best way to legally type pun in C++ is to use memcpy (which is legal since a new object is created. This means the strict aliasing rules aren't violated). We do get std::bit_cast though which will allow for type punning casts and it can be used in constexpr situations.

    • @wusuoliu5431
      @wusuoliu5431 Před 2 lety

      ​@@lincolnsand5127 @OFfic3RiK Great discussion! As a newbie I have a question. If our code is absolutely free of alignment and Endian problems, could type punning still cause unexpected errors? I saw a stack overflow example claiming that, when compiler optimization is in place, under strict aliasing rule, the compiler might assume two pointers of different types point to different places, and thus decide the writes via the 1st pointer do not affect the 2nd pointer and its pointed value, so it generates machine code which may not register-load the 2nd pointed value in time, and thus lead to catastrophe. However some other people were saying the post was wrong. Do you think this as an legitimate issue?

    • @lincolnsand5127
      @lincolnsand5127 Před 2 lety

      @@wusuoliu5431 Well. It depends. gcc and clang have a flag called -fno-strict-aliasing. If you don't use that flag, compiler optimizations might break your code. If you have the flag, *only* hardware-specific things will (e.g. some architectures don't allow unaligned loads).

  • @g7parsh
    @g7parsh Před 2 lety

    My favorite instance of this is The fast-inverse square root

  • @MsKarlason
    @MsKarlason Před 5 lety +2

    Can compiler choose how organize this in memory and brake it?

  • @9SMTM6
    @9SMTM6 Před 4 lety +2

    This is very interesting and a nice demonstration of 'C++ is no magic', but at the same time you should probably make it clearer that this should NOT be used in projects by anyone but experts, and even these should think like 4 times about it. In most cases the possible performance penalty is probably to be preferred over possible insecurities and other problems that this stuff can cause.
    Theres some situations I might think of using this, i.e. to convert a 3 element array (interpreted as 3D vector) to an interpreting struct {double x,y,z} but TBH I miss experience to try to do this in any but a POC.
    Edit: So basically the Unions in the very next video. Neat, was this video meant mostly as a explanation?

  • @gabrielbarrantes6946
    @gabrielbarrantes6946 Před 6 měsíci

    Actually structs can have some padding, if the types don't aling nicely, compiler can add some padding to improve performance...

  • @huyvole9724
    @huyvole9724 Před 6 lety

    Thank Cherno. When will you make type casting in C++?

  • @nickvirus9463
    @nickvirus9463 Před 6 lety

    Can you tell us about operation * and & on practices?
    Thanks for Memory watch tutorial!

  • @diegotames
    @diegotames Před rokem

    This demostrates the amazing power of knowing C++, also, I guess that we could use this capability to achieve something like Arena Allocation, right?

  • @hazinkop
    @hazinkop Před 6 lety

    Can you make a video about types of casting? ( dynamic cast, static cast etc )

  • @christopherprobst-ranly6357
    @christopherprobst-ranly6357 Před 8 měsíci

    That hand waiving...

  • @TheReficul
    @TheReficul Před 6 lety

    Please consider doing a video on Godbolt, Cherno. Great informative video as always.

    • @mm1979dk
      @mm1979dk Před 6 lety

      It Cracks! Godbolt has his own channel, really cool, check him out!

    • @TheReficul
      @TheReficul Před 6 lety

      Newbies should get to know it, that's what I meant.

  • @jlewwis1995
    @jlewwis1995 Před 4 lety

    I assume that the type you want to cast the value to has to be aligned to the byte size of the desired value type as well? Like for example in your example where you accessed y in the entity struct by adding 4 to the address of x to get y as an int would y need to be aligned to a multiple of 4 in the struct or could it be at any offset as long as all 4 bytes you get are in the valid memory of the struct?

  • @DanielLiljeberg
    @DanielLiljeberg Před 6 lety +3

    After all these years I'm still not sure about how I feel about C-style casts contra static_cast, dynamic_cast, const_cast and reinterpret_cast in C++ code. Since the C style cast is not very clear about which type of cast will occur, since it depends on the data types, I feel the more verbose C++ style casts helps when I read code that isn't mine. Because, and correct me if I'm wrong. The C style cast actually tries the various C++-style casts in order, until it finds one that works.

  • @eleganteatinginjapan659

    Hey, I get that the struct is made out of the raw bytes that make the 2 variables in your example. What if the struct also used functions? What would they look like in memory and how do Structs/Classes work under the hood?

  • @sharpparadox9563
    @sharpparadox9563 Před 7 měsíci

    Now i dont know at the moment what i would do with that but i feellike i can write some troll code accessing everything by casting to a charpointer and moving it around

  • @ranasalman4972
    @ranasalman4972 Před 5 měsíci

    when it clicked, I was like "WOW Damn that's amazing :)"

  • @electronlabs2802
    @electronlabs2802 Před 3 měsíci

    you haven't mentioned that in some cases compiler might add padding between between x and y in the struct.

  • @AntiWanted
    @AntiWanted Před 3 lety

    Nice

  • @VikingSteeez
    @VikingSteeez Před 5 lety

    Can you use this to generate a list of the mem addresses of all the methods in a particular class?

  • @lukenukem8028
    @lukenukem8028 Před 4 lety +5

    Watching this makes me hate type punning.
    I vaguely knew about it's usage, but didn't know it's name.

  • @ashutoshpandey-jf9gd
    @ashutoshpandey-jf9gd Před 6 lety

    Hi Cherno,
    first thing your video are very good but speed is little bit faster.
    If we work on 32bit OS, and we want to save an address of variable then we need 4bytes i.e
    char c;
    char *ptr=&c;
    so to save the address of char c we need at least 4 byte right?
    now my question is as per C++ standard empty class size is 1byte due to differentiating via address.
    So how compile save empty size struct or class memory into 1 byte.

  • @masondaub9201
    @masondaub9201 Před 3 lety

    I usually use this sort of stuff when I need to swap byte orders for the multi byte fields of file specifications. PNG in particular expects big endian numbers but x86 stores numbers in little endian so it needs to be swapped.

  • @satellite964
    @satellite964 Před 5 lety

    @9:13 wait I'm confused, shouldn't we have de-referenced here? Like *position[0] ? Or does adding [ ] auto de-reference?

  • @richardbloemenkamp8532

    Is this a reasonable way to loop over member-variables of a class? It seems that looping over member-variables of a class/struct is difficult in C++ because I heard that does not support reflection natively.

  • @electrotsmishar
    @electrotsmishar Před 2 lety

    I think you will like Typescript. It's amazing

  • @jetfaker6666
    @jetfaker6666 Před 10 měsíci

    "Memory is by far one of the biggest things we have to deal with when we're actually programming" - Yan Chernikov

  • @richardrisner921
    @richardrisner921 Před 3 lety

    Can I use this to alter a constant static class member variable?

  • @varuntaneja7073
    @varuntaneja7073 Před 3 lety +1

    pro tip
    .
    .
    .
    .
    .
    .
    .
    .
    .
    .
    Never skip an ad on Cherno's videos

  • @akshaynaik4888
    @akshaynaik4888 Před 6 lety

    Make a video about other programming languages u have used and your option about them.

  • @softwareengineer.9992
    @softwareengineer.9992 Před 4 lety

    Hello sir can I know which devices are you using for making CZcams video and for attaching your voice

  • @bloodwolf8307
    @bloodwolf8307 Před 4 lety

    cool

  • @user-xm9xo7jg4u
    @user-xm9xo7jg4u Před 9 měsíci

    Which IED do you use? It looks impressive.