Coding Shorts: Nullable Reference Types: Or, Why Do I Need to Use the ? So Much!

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

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

  • @Switchs89
    @Switchs89 2 หลายเดือนก่อน

    Solid material. When you go over reference types nullability with such ease, you know straight away that you are listening to a an expert. Thanks.

    • @swildermuth
      @swildermuth  2 หลายเดือนก่อน

      That's very kind of you. Glad you liked it.

  • @arttrenton4467
    @arttrenton4467 ปีที่แล้ว +6

    Shawn, you did an outstanding job of clarifying this new feature. I was struggling to understand why this was done. It now make sense to me. Thanks 😊

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

    Amazing video! The only video that cleared up for me why there's such a thing as nullable ref types. In short, it was to eliminate ambiguity by forcing an explicit declaration of intent. I also enjoyed the latter half where you went into the operators and the generic example.

  • @trestenpool9045
    @trestenpool9045 2 หลายเดือนก่อน +1

    great vid. You cleared up a lot of confusion I previously had!

    • @swildermuth
      @swildermuth  2 หลายเดือนก่อน

      Glad it helped. Took me a while to get my head around it too.

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

    you have unusual way to simplify anything in a minute, great explanation as usual, thank you so much

  • @imaginative-monkey
    @imaginative-monkey ปีที่แล้ว

    Thanks for the video! 👍 Sometime for new projects, I add Nullable to the csproj, so the code won't compile unless I fix nullability issues. This makes me understand the concept better.

  • @coderider3022
    @coderider3022 9 หลายเดือนก่อน +1

    I switched to using result / option / elevated types from the functional world in my c# and never looked back. Nullable and handling of them was a terrible idea for c#. I get its backward compatibility but time to evolve.

    • @swildermuth
      @swildermuth  9 หลายเดือนก่อน

      Immutability and nullability are not the same issue. But I'm glad it is working for you.

  • @russellf
    @russellf 4 หลายเดือนก่อน

    Came back for a refresher. A great summary, thanks! One thing I still ponder about is nullability on classes and records that are loading, e.g. config from disk etc., where you want to almost tell the compiler, “these fields are always set”. I guess this is adding ! to members but maybe there is a better way?

    • @swildermuth
      @swildermuth  4 หลายเดือนก่อน

      You can say "required" and use non-nullable - they just need to be initialized in the constructor or object syntax.

    • @russellf
      @russellf 4 หลายเดือนก่อน

      I completely missed the required keyword - thanks!

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

    This information was exactly what I was looking for. Greate stuff Shawn. Thanks for sharing your knowledge.

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

    most important change in the last 5 years. Paying attention to this as the tools are trying to make you do, massively improves your design.

    • @jonb8869
      @jonb8869 9 หลายเดือนก่อน

      How? Can you elaborate on this?

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

    Extemely well done video, full and concise; have watched many video tutorials over the years both on YT, Pluralsight, etc; format is excellent.

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

    Brilliantly explained in such a short way! Thanks a lot for your educational lessons 😊

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

    Thanks for the clear explanation on this. One thing that might be missing is that you can also get ris of the "may be null" warning by performing a null check somewhere before in the code.
    To me the addition of nullabel reference types possibly had the biggest impact of all newer features and i would never deactivate it on a new project now.
    Migrating old code can be a pain though ...

  • @robby-de-laet
    @robby-de-laet ปีที่แล้ว +1

    Well, that was a clear explanation. Thanks Shawn.

  • @sadhappy8860
    @sadhappy8860 10 หลายเดือนก่อน +1

    Great video, really helped me thank you. Although the word null kept going funny in my head. Haha

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

    Amazing video, thanks for putting it together!

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

    Your content is amazing.. well done! don't stop!!

  • @GBUKMilo
    @GBUKMilo 2 หลายเดือนก่อน

    Love this video, thanks Shawn

    • @swildermuth
      @swildermuth  2 หลายเดือนก่อน

      I appreciate it!

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

    It's funny how c# is now doing the same thing java did with generics decades ago. Provide an optional "upgrade" to the new system and all old stuff is now a warning.
    And seeing that this "slow migration system" never completed in java we can assume that c# will have projects with nullabity and without for pretty much forever.

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

    Thanks, very good stuff. What would you say are the benefits, for developers and the applications we build. I know you did mention it in the end, but I somehow got the impression of "just do it" rather than "do it so that your code will ..."

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

      I think the benefit is more transparency to what you expected. By specifying nullability, you're telling the developer after you what you expect. Whereas before Nullable Reference Types, I didn't have a way of saying "This will never be null".

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

      @@swildermuth I also like that the code, when in runtime, will not (hopefully) get "null ref"-issues. Or am I misunderstanding ?

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

      @@jedjohan That's true (harder to get null ref issues, but not impossible)

  • @prateektomar4874
    @prateektomar4874 8 หลายเดือนก่อน

    Nice explaination.

    • @swildermuth
      @swildermuth  8 หลายเดือนก่อน

      Glad you liked it

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

    Thanks for great video!

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

    At 3:00 - "int? x = default" - the value is not 0 but null! (I was testing code as you were displaying it)
    Which brings me to my next question, why isn't it clear by the compiler what "default" value is!

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

      Null isn't the default for anything. Default for value types are typically 0 for numeric types.

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

    Nice one. Thank you

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

    good explanation

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

    when I scaffold the database using EF Core I get a lot of warnings about nullable

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

      The scaffolding hasn't caught up with it. I don't have a good solution (adding the "#nullable disable" on every file isn't scalable really).

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

      What version of .NET Core are you using? You might need to get the latest version of EF Tools. It is handling the null-ness in my recent projects.

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

      ​@@swildermuth I am using .NET 7 and the dotnet-ef is 7.0.2 but in .NET 6 I also had the same warnings, I tried NullableReferenceTypes but not working in my case I can send more info if needed

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

    9:25
    In fact the code:
    var len = user.Name?.Length;
    len is of type int?
    var len = user.Name!.Length;
    len is of type int

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

    How to create project by n new instead of dotnet new? when I use it I get error: n : The term 'n' is not recognized as the name of a cmdlet

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

      Sorry, it is "dotnet new" - I just have a batch file that redirects to dotnet so I only have to type "n"

  • @a-s733
    @a-s733 ปีที่แล้ว +1

    short and clear

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

    Cool channel. Thanks. I have been uneducated about how this feature works. Now I ain't. :D

  • @王宏亮-x8h
    @王宏亮-x8h ปีที่แล้ว +3

    This feature adds unnecessary complexity to the c# language.

  • @allanhouston22
    @allanhouston22 7 หลายเดือนก่อน

    C# is a Frankenstein language for a long time. Now this nullable stupity is made so that the code is easily read and used by the AI... I hate it

    • @swildermuth
      @swildermuth  7 หลายเดือนก่อน

      Not sure how AI plays into it. But you're able to not use nullable reference types. There seems to be a separation into two dialects of the language over the years. C# 13 is the maturation of including more functional ideas, but it's all opt-in. You don't have to use it if it's not serving your needs.

  • @WillEhrendreich
    @WillEhrendreich 3 หลายเดือนก่อน

    Coming from an Fsharp perspective, nrt is helpful, but.. Like.. Not enough safety still. Lol. Types should never be null, null is terrible. Option is nicer, result is even better. Null was never a good idea.

    • @swildermuth
      @swildermuth  3 หลายเดือนก่อน

      I understand this perspective coming from F#, but C# is still an OOP language and the concept of NULL is still valid, especially when you're working with data stores that keep that concept.

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

    Great explanation