937
you are viewing a single comment's thread
view the rest of the comments
[-] Zangoose@lemmy.one 1 points 4 months ago

As a dev who works on both Java and C# code, modern Java (17+) and C# feel almost exactly the same (not sure if Java has extension methods though).

Bonus points for using Kotlin instead tho. I dislike both Java and C# just because they both allow any object to be null and that's usually a headache whenever a null exception shows up.

The only thing I like better about C# is the Fixture library for testing. I haven't found any mature libraries like it for Java yet.

[-] dan@upvote.au 2 points 4 months ago

they both allow any object to be null and that's usually a headache whenever a null exception shows up.

C# has nullable reference types now: https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references. If you enable it, you have to explicitly make reference types nullable (like ?string) and you'll get build warnings if you try to use a variable that's potentially null.

this post was submitted on 04 Mar 2024
937 points (97.4% liked)

Programmer Humor

31251 readers
1030 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS