this post was submitted on 02 Jul 2023
61 points (89.6% liked)

Programmer Humor

31434 readers
1647 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
top 11 comments
sorted by: hot top controversial new old
[–] DarthFrodo 21 points 1 year ago (2 children)

The neat thing is, you can add stuff like range checks and logging for getters and setters without changing every call. Separation of concerns is also vital in larger projects.

[–] hairinmybellybutt 20 points 1 year ago

typical OOP progaganda

[–] [email protected] 6 points 1 year ago

also const correctness in languages that support that concept

[–] alokir 6 points 1 year ago (1 children)

Wait until you hear about the concept of properties in languages like Javascript, C#, Kotlin and many others.

[–] [email protected] 3 points 1 year ago

At least for Kotlin it's literally just syntactic sugar for getter and setter methods. I really like them, don't get me wrong, but it's just the bottom approach masquerading as the top approach

[–] [email protected] 4 points 1 year ago

That's not a new way to change data, it's reading it.

[–] [email protected] 2 points 1 year ago

I'm convinced that Java programmers need to write setters and getters to meet their KPI target.

[–] [email protected] 2 points 1 year ago

I am triggered

[–] [email protected] 1 points 1 year ago

I love dart's approach to getter and setter methods... They let you define methods labelled explicitly as "get" or "set" methods that you can call without writing the parentheses. So the call looks like accessing a member variable, but internally it can handle additional functionality like logging or validation or whatever you want. So the syntax would look like the first example in the meme, but with all the benefits of the second example. I wish more languages would incorporate this

[–] [email protected] 1 points 8 months ago

Imagine not using a language with setters and getter built in lol

[–] bi_tux -2 points 1 year ago

Every IT profesor, ever