Or Scala, or Kotlin.
Might want to add to the wish list to support sqlite. It's fast and easy to move from one PC to the next.
Or Scala, or Kotlin.
Might want to add to the wish list to support sqlite. It's fast and easy to move from one PC to the next.
I don't like programming in Java either. No worries...use it from Clojure!
You can put lipstick on a pig, but it's still a pig
jaxb, you won't know for many many years about this since you're a very young dude.
Don't forget that pig is part of the backbone of major stock exchanges (NASDAQ, NIKKEI, FTSE, etc). I worked on a distributed system used to route trades from these and the main exchanges of around 50 different countries. It's also used a LOT for high frequency trading (believe it or not, I seen more than one project that migrated C to Java)
I believe you, but WHY would they do this? If there is a UI involved...I get it....but I can't think of any other good reasons...unless you like memory leaks.
The reason was exactly to prevent memory leaks. That's also exactly the reason why java is used in servers that run for years without stopping. Now, for high frequency trading it's all about preventing the garbage collector to run, so you preallocate everything upfront and only use that. The code looks BAD by the way
C/C++ does not force you to do anything as you are free to write shitty code that leaks memory.Interesting....my impression was leaks are much more of a problem in Java than c/c++ because the latter forces you to manage memory properly-ish...Im not a fan of garbage collectors.