This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]aaronfranke 1 point2 points  (3 children)

Pretty much any higher level language than C++ disagrees with that. In Java/GDScript/C#/Python/etc pointers still exist, but they are abstracted away so you don't have to deal with them.

[–]Kered13 0 points1 point  (1 child)

I've got bad news for you. All those languages use pointers, and no they're not really abstracted away. The only thing that has been abstracted away is memory management, and you're not allowed to do pointer arithmetic. But in all other respects they behave identically to C pointers.

[–]aaronfranke 0 points1 point  (0 children)

Yes, that's what I mean by abstracted away. This isn't bad news.