this post was submitted on 03 May 2024
1 points (100.0% liked)

Programmer Humor

31329 readers
17 users here now

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

Rules:

founded 4 years ago
MODERATORS
 

Alt text:

Image that says:

HOLY SHIT!! IS THAT A MOTHERF*CKING C++ REFERENCE???

int& a = b;

top 1 comments
sorted by: hot top controversial new old
[–] Zagorath@aussie.zone 1 points 2 months ago* (last edited 2 months ago)

I've used C but never C++. What does it mean for a variable's type to be int&? From when I've used it, & would be used to create a pointer to a variable, but the type of that pointer would be int*.

edit:

never mind, I looked it up. It's a "reference" instead of a pointer. Similar, but unlike a pointer it doesn't create a distinct variable in memory of its own.