Why Java? Tales from a Python Convert
sookocheff.com
Why Java? Tales from a Python Convert
1–10 of 102 posts
Re: Why Java? Tales from a Python Convert
#2Re: Why Java? Tales from a Python Convert
#3Re: Why Java? Tales from a Python Convert
#4Compared to something like a case class in Scala or even autoproperties in C#, writing classes with a bunch of getter and setter methods just to keep state is really tedious.
Re: Why Java? Tales from a Python Convert
#5These examples look like C# 2.5 with a little bit of LINQ.
Re: Why Java? Tales from a Python Convert
#6These examples look like C# 2.5 with a little bit of LINQ.
IMHO, C#'s tooling and is definitely ahead. Java is starting to get there, and I can see why the JVM is still popular. But given the actions of Oracle and MS as of late, I think I'd take MS. VS starter projects are easy to setup and run... Every Java application I've worked on has been an exercise in frustration just getting the environment setup.
Re: Why Java? Tales from a Python Convert
#7The one thing keeping me away from Java still is the awful experience around modeling data. Compared to something like a case class in Scala or even autoproperties in C#, writing classes with a bunch of getter and setter methods just to keep state is really tedious.
So considering you can just generate and forget why is it tedious?
Re: Why Java? Tales from a Python Convert
#8The one thing keeping me away from Java still is the awful experience around modeling data. Compared to something like a case class in Scala or even autoproperties in C#, writing classes with a bunch of getter and setter methods just to keep state is really tedious.
https://github.com/google/auto/tree/master/value
Not the same as what you reference in the other languages, but useful if you find yourself dealing with it in java.
Re: Why Java? Tales from a Python Convert
#9The one thing keeping me away from Java still is the awful experience around modeling data. Compared to something like a case class in Scala or even autoproperties in C#, writing classes with a bunch of getter and setter methods just to keep state is really tedious.
Re: Why Java? Tales from a Python Convert
#10The one thing keeping me away from Java still is the awful experience around modeling data. Compared to something like a case class in Scala or even autoproperties in C#, writing classes with a bunch of getter and setter methods just to keep state is really tedious.