Snot Flickerman
link
fedilink
English
1711d

Thanks for the pointers.

Here’s a secret I wish someone told me in high school: literally everything is pass by value, it’s just that sometimes the value is an address. It demystified pointers for me.

Yeah, when I grokked that simple fact pointers became easy.

propter_hog [any, any]
link
fedilink
English
311d

That’s true in Java, not necessarily in other languages

@ddplf@szmer.info
link
fedilink
7
edit-2
11d

It’s the opposite, everything is passed by reference but primitives are also addresses and therefore passed by value

You can’t pass objects or functions as value

They taught you about pointers in high school? The only course available to me that even touched on programming just covered how to use C to do conditionals, read keyboard input, and print text to a terminal. The bulk of the course was learning MS Office.

asudox
link
fedilink
711d

That got me confused with rust references and why the dereference operator even exists as well.

Ephera
link
fedilink
English
311d

I mean, Rust has the additional thing that a reference is a pointer + a borrow, so it’s not quite as similar to a pass-by-value.

And as for the dereference operator, occasionally you can use it to turn a reference into an owned value, often by making a copy of the value (but in that case, you can usually also use .to_owned()).

A case where I don’t think there’s an alternative to the dereference operator, is if you’ve got a mutable reference and you want to replace the value that’s underneath: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=04621490e1d0fd6fe1af7f2e843547fb
At the very least, if you remove the asterisk, the compiler will tell you very precisely that you need to add it back.

asudox
link
fedilink
111d

yeah. references aren’t the same as pointers in c++ but similar, so it’s something along those lines.

pointers are just symlinks in programming

Thanks, Anya Forger

She reads memory all the time

alphacyberranger
link
fedilink
English
4
edit-2
11d

Lmao good one

@PowerCrazy@lemmy.ml
link
fedilink
English
1011d

I “understood” on a basic level what pointers were when i was first learning programing as a 12-13year old. But I never understood HOW to use them, or manipulate them, or what functions you use to interact with them, or how to examine them, or how to declare them, etc etc. And since I was young I never got the opportunity to take an actual programming class that taught any of that throughout high school. By the time I got to college I went with Electrical Engineering instead of computer science and so my journey with pointers ended.

Now I do python and never have to think about pointers.

Every Python variable is a pointer

@PowerCrazy@lemmy.ml
link
fedilink
English
211d

Sounds like the perfect evolution of pointers then.

TimeSquirrel
link
fedilink
1511d

Lemme tell you something, DO NOT learn BASIC as your first language. As a hobbyist, I avoided C/C++ for 25 years because I just didn’t get pointers and memory manipulation, and messed around with other languages like JS and PHP instead (also BASIC’s GOTO and GOSUB kinda ruined me as a programmer for a few years). But once it finally clicked a couple years ago, I now want to write EVERYTHING in C/C++.

I think plain C at least should be everybody’s first language. It literally reprograms your brain to think exactly like how a computer internally functions. I never got that with other languages, because they were so far removed from the actual machine.

Edit: also, after learning some of it, it’s pretty neat when you do stuff like look at parts of the Linux kernel source code and think “wow, I know what’s actually happening here now!”.

☆ Yσɠƚԋσʂ ☆
creator
link
fedilink
611d

I actually think that everybody should learn a functional language like Scheme first because it teaches you to think about state explicitly. It’s very easy for somebody who learned a functional language to pick up an imperative one, but it’s very hard for people to go the other way around.

@red@lemmy.zip
link
fedilink
English
610d

as someone who learnt assembly before any low level programming language understanding pointer’s was never a problem for me,

veroxii
link
fedilink
611d

I’m a little disappointed peanuts weren’t worked into this somehow.

kingthrillgore
link
fedilink
611d

at last I finally see

Create a post

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

Rules:

  • Posts must be relevant to programming, programmers, or computer science.
  • No NSFW content.
  • Jokes must be in good taste. No hate speech, bigotry, etc.
  • 1 user online
  • 112 users / day
  • 137 users / week
  • 515 users / month
  • 2.49K users / 6 months
  • 1 subscriber
  • 1.6K Posts
  • 35.6K Comments
  • Modlog