| > > Function Pointers -- Missing > Java 8 Yet again, they admitted an important feature was missing. Again, I am not familiar with Java 8 but I suspect their implementation is horribly wrong. > > Constructors can't call each other > Again see the code at the end. See my response. > > Methods With the Same Name as Constructors > Yea that's allowed, I don't see what's wrong with that. It's a real function name so it should be allowed. I've never accidently made this error. I have. I guess I have just logged more time in Java than others. > > Run-time Dispatch: Fantasy > This is a design pattern issue but you're meant to use the highest or lowest version of an abstraction. From there you can ideally handle it in a generic way or if not you can use if (x instanceof Object) to filter out specific cases. Please tell me how to do it properly. IE, if I have a variable of type Foo that is holding a value of type Bar, how do I invoke the function with Bar instead of Foo in the signature? > > No Globals means Frameworks > This is where decorators and static/singleton classes come in handy. You can do some amazing things with decorators, singleton/static classes, and if you need it a bit of reflection. My point exactly. Other languages just use globals. Because they are useful and people need them. Java makes you invent a new programming paradigm to overcome its artificial limitations. > > import is Useless > You can just use the fully-qualified name of the other class and it will work fine. I've had maybe one instance where my naming conflicted with another package but that was a rare case. And what do you do when you blow out the 80-char limit on columns? Oh let me guess. You like your 1024-char limit on columns because you are using a superior IDE. > > No List Literals > Arrays.asList I don't recall that being an option. I do know that people used to prefer the curly brace format but that turned out to cause memory leaks. > > Inner classes Don't Work > I don't know what he means as this works perfectly fine for some design patterns. Inherit state? No way. Provide impelemntations of an abstract/interface for a specific object? Yes way. > In ArrayList it is perfectly fine to make an ArrayListIterator as they are the same bits of ideas and as such should be in the same file. > I also prefer state enums to be defined in a class. The issue with inner classes is that so many thing are contrary to expectations. I started to list them all but it got too long. I'll have to revisit it and try to condense it down. > > Java is So Hard People Prefer to Write Code in XML, Jython, Scala, and Clojure > I don't do this only """ENTERPRISE""" Java developers do this. There's a lot of great work being done moving away from this mentality but there is still a lot to be done. The point is the reason why they do it is because it's easier to write, test and debug these other languages than Java. People know that coding in native Java is slow and cumbersome and time-consuming with no significant benefit. > > Speaking of the JVM... > I'd love some numbers on these claims. What claims need numbers? LLVM and PyPy exist. JS with JIT kicks the pants off of almost everything --- because it is compiled down to native machine code. Go look them up for yourself. JIT is the new fad, and it's a huge deal. > > DNS Client Implementation > Yea this is a problem. It's in here for compatability. There are many libraries implementing this better at the moment. Name one. > > Why Use Java at All? > Why use any language at all? Write binary and opcodes (like I've been doing in my CPU project). It's very fun! I write code to get the job done so I can get paid, my company's stock price can go up, and I can get money. It's a job. Yes, I love programming, but I prefer to get as much done with as little work as possible. > In seriousness Java gets concurency right and I've not found another language that lets me write concurrent code like this ever before. Very nice platform to run on and one of the worlds best VMs. Everything is simple and documented well. I don't need to read a novel to get something working. I can think of a class, type that a control-space on my IDE, get a list of classes, find the one in the right package and move on. No google, no searching, just tooling and built in documentation. What's even better is most of the language is implemented in Java! I have the sources downloaded so CNTRL+Click and I can see everything's implementation! I'd love to see a python dev do that (I cant and I've been writing python for years). Yeah, you strike me as someone who only knows Java. Let me know if I'm wrong. > I'll be emailing the author at this email: jgardner @ XXX .net and giving him this comment. I hope he can rebute some of these points. My email is jgardner@jonathangardner.net. It's been around for decades so feel free to send me as much email as you like. I'll see the good stuff and the spam folder will eat the rest. Let me change your example: class Test {
private final int i;
public Test(int i) {
this.i = i;
}
public Test() {
this.test(7);
this(10);
}
private void test(long number) {}
}
Tell me how that works out for you. |
>JIT is the new fad, and it's a huge deal.
The term "Just-in-time compilation" was borrowed from the manufacturing term "Just in time" and popularized by Java, with James Gosling using the term from 1993.[16] Currently JITing is used by most implementations of the Java Virtual Machine, as HotSpot builds on, and extensively uses, this research base.
https://en.wikipedia.org/wiki/Just-in-time_compilation
Java definitely has room for improvement but claiming that JS is better or faster is hilarious and makes me wonder what you are trying to sell.
JS seems fast if you only compare it to Python and PHP.
https://benchmarksgame.alioth.debian.org/u64q/javascript.htm...