this post was submitted on 02 Jul 2023
43 points (87.7% liked)

Programmer Humor

32588 readers
918 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
top 9 comments
sorted by: hot top controversial new old
[–] [email protected] 14 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.

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

typical OOP progaganda

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

also const correctness in languages that support that concept

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

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

[–] metarmask 2 points 1 year ago

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

[–] [email protected] 1 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 1 year ago

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

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

Every IT profesor, ever