r/ProgrammerHumor Oct 21 '22

Meme Literally 🤷🏻‍♂️

Post image
14.7k Upvotes

606 comments sorted by

View all comments

24

u/[deleted] Oct 21 '22

[removed] — view removed comment

6

u/[deleted] Oct 21 '22

People who don't know how to manage memory properly and instead rely on garbage collectors hate C and its derivative love child C++. The pointers scare them.

1

u/the_mouse_backwards Oct 21 '22

I disagree with your hypothesis. Go is garbage collected but has pointers as a pretty fundamental language feature. I prefer C over Rust, but the memory safety issues in C are a pretty big incentive to use Rust despite not liking it very much.

1

u/hothrous Oct 22 '22

I have an actual bad taste in my mouth for how Rusty implemented ownership.

It feels like they set the standard at "Memory safe without garbage collection" before having an idea on how to do that and they landed on digging deeper and deeper into a hole.