Nov-02-2017, 02:35 PM
(This post was last modified: Nov-02-2017, 05:01 PM by QueenSvetlana.)
I've posted a question about abstract class and if I correctly constructed one and used it properly.
It made me remember all the funny procedures that Java devs have to go though for the simplest tasks.
For example, if I wanted to access the
In Java, it's another story.
I would need to down cast, which means using the
A lot of code for the simple task of accessing a subclass specific method.
Some days I just wake up, breathe in the fresh air, and think, damn it's good to work with Python.
I'v got another example, but I'll share it later.
Any stories of specific tasks made easier with Python than another language?
It made me remember all the funny procedures that Java devs have to go though for the simplest tasks.
For example, if I wanted to access the
def charge(self):
I just call cg.charge()
, done! In Java, it's another story.
I would need to down cast, which means using the
instanceof
keyword or getClass()
, both of which is a big NO in Java. The other method is the visitor pattern. It's essentially just another class that takes the subclass and calls the method on that subclass. This has drawback of course, as you would have to know your sub classes a head of time or you would have to change the implementing class to accept that new type.A lot of code for the simple task of accessing a subclass specific method.
Some days I just wake up, breathe in the fresh air, and think, damn it's good to work with Python.

I'v got another example, but I'll share it later.
Any stories of specific tasks made easier with Python than another language?