Author Topic: Kieran's Programming Beginner Questions  (Read 7910 times)

0 Members and 1 Guest are viewing this topic.

Offline kieranmillar

  • Posts: 286
    • View Profile
Re: Kieran's Programming Beginner Questions
« Reply #15 on: February 14, 2018, 08:27:47 PM »
I'm trying to improve my coding style as I go along, and want to know people's opinions about getters and setters.

Data should be private. Helps with encapsulation. Makes a lot of sense.

But if you have a class or struct that only exists to group together some related data, say as some sort of class within a class, are a bunch of trival getters and setters all that useful?

After thinking about it, I can see the argument that using getters and setters is always a good idea, because it can help with future debugging or expanding functionality of the class, if every variable access or change must be done through a function, you have an easy way to add logging or change the way it happens later, rather than digging through code for everywhere where those values were altered directly.

But I also read people on the internet moan about having a bunch of trivial getters and setters, and that objects should be designed around having an API of what actions you want to perform that result in the data being changed, rather than ever just changing the values directly. This makes a lot of sense too.

But sometimes I just want a simple class or struct that just stores some related data, so I guess in this case direct access probably makes the most sense and getters and setters should be avoided? Does it matter? Reduces overhead maybe, I don't know.

I know programmers love nothing more than a good moan, so if you have any opinions, feel free to have a whine and help me learn!

Offline Colorful Arty

  • Posts: 814
  • You are so loved!
    • View Profile
    • Colorful Arty's Youtube Page
Re: Kieran's Programming Beginner Questions
« Reply #16 on: February 14, 2018, 08:49:46 PM »
Personally I find the whole make variables private but provide getters and setters to be rather stupid. If you're going to modify variables outside the class, why bother making them private?
My Youtube channel where I let's play games with family-friendly commentary:
https://www.youtube.com/channel/UCiRPZ5j87ft_clSRLFCESQA

My Twitch channel: https://www.twitch.tv/colorfularty

My levelpack: SubLems
For New formats NeoLemmix: https://www.lemmingsforums.net/index.php?topic=4942.0
For Old formats NeoLemmix: http://www.lemmingsforums.net/index.php?topic=2787.0
For SuperLemmini: http://www.lemmingsforums.net/index.php?topic=2704.0

My levelpack: ArtLems
For New formats NeoLemmix: https://www.lemmingsforums.net/index.php?topic=4583.0

Offline Simon

  • Administrator
  • Posts: 3860
    • View Profile
    • Lix
Re: Kieran's Programming Beginner Questions
« Reply #17 on: February 14, 2018, 09:12:35 PM »
The idea of OO is to encapsulate behavior and data.

Merely grouping data is handy, but it's distinct from an object in the sense of OO. It's Plain Old Data, and often appears in the belly of more complex classes, or as messages that you must send manually on a very low level between two OO-style objects, e.g., over a network connection.

If every possible state of your POD is legal, and modifications to single fields of the POD don't require checks to maintain some invariant, then go ahead and make all fields public. There are many other ways to keep this maintainable, e.g., you can restrict the use of this POD to a single part of your program.

When your objects have meaningful behavior, then exposing many getters and setters is a design smell. Your class should expose a meaningful high-level protocol. The principle in OO is Tell, Don't Ask: If class A must ask class B for some data to perform some logic, consider to move this logic into class B, and merely have class A tell class B to perform the logic.

-- Simon
« Last Edit: February 14, 2018, 09:23:17 PM by Simon »

Offline ccexplore

  • Posts: 5311
    • View Profile
Re: Kieran's Programming Beginner Questions
« Reply #18 on: February 15, 2018, 02:04:05 AM »
There are definitely some cases where you are really dealing with POD (ie. Plain old data) and therefore should just do all public fields.  For example something like a Point that captures a pair of x and y coordinates.  But even examples that seem obviously POD (or started off as such) might end up evolving into something that's no longer POD.  For example maybe you want to represent a mutable (questionable design choice, but for sake of argument we'll allow it) complex number, which can be represented in Cartesian (ie. real and imaginary components) and polar forms (ie. magnitude and phase), and maybe you want to support the ability (also questionable design, but let's just say so for sake of example) for user to change any of the four properties and have the program automatically recompute the other properties based on the change.  In such a use case, the complex number is no longer POD, and moving to the property model with (now nontrivial) getters and setters becomes more sensible.