

Ask Slashdot: Should I Move From Java To Scala? 245
"Scala is one of the JVM languages that manages to maintain a hip and professional vibe at the same time," writes long-time Slashdot reader Qbertino -- building up to a big question:
One reason for this probably being that Scala was built by people who knew what they were doing. It has been around for a few years now in a mature form and I got curious about it a few years back. My question to the Slashdot community: Is getting into Scala worthwhile from a practical/industry standpoint or is it better to just stick with Java? Have you done larger, continuous multi-year, multi-man and mission-critical applications in Scala and what are your experiences?
The original submission asks two related questions. First, "Do you have to be a CS/math genius to make sense of Scala and use it correctly?" But more importantly, "Is Scala there to stay wherever it is deployed and used in real-world scenarios, or are there pitfalls and cracks showing up that would deter you from using Scala once again?" So share your experiences and answers in the comments. Would you recommend moving from Java to Scala?
The original submission asks two related questions. First, "Do you have to be a CS/math genius to make sense of Scala and use it correctly?" But more importantly, "Is Scala there to stay wherever it is deployed and used in real-world scenarios, or are there pitfalls and cracks showing up that would deter you from using Scala once again?" So share your experiences and answers in the comments. Would you recommend moving from Java to Scala?
Twitter and Scala (Score:5, Informative)
https://www.quora.com/Is-Twitter-getting-rid-of-Scala
Quote "I can't answer that, but I did attend lately a session by Raffi Krikorian, who was VP Platform Engineering at Twitter and one of the people responsible for introducing scala at Twitter.
He was asked about scala, and said that if he would have to choose again today, he's not sure he would go with scala.
The argument was that scala introduces a big learning curve for new developers. Because of its complicated language features it can become hard to read. So at Twitter they are trying to not overuse the complexities of the language, so the main benefit they get from it are lambdas. Which is now basically available with Java 8. So the overhead of developer training might not be worth the benefit."
Re: Twitter and Scala (Score:4, Insightful)
Re: (Score:3)
Sure, happy sewing with that sword.
Scala is like a hammer that also can be used to saw, drill, screw and paint! But only if you're an expert and even then only very carefully or you'll cut of your foot.
Confused gorila (Score:2)
Re: (Score:2)
Re: (Score:2)
This isn't necessarily an argument against Scala, using it well will have it's challenges, but this is true for most languages. Linkedin went through the same.
Some of the tradeoff's Twitter has had to make have changed. They moved away from Ruby, and for Ruby developers, Scala might actually have been easier to pickup than someone who has been doing Java since 1.4. You have to unlearn more OO practices to use Scala well, but you can write very rubyish or pythonic code in Scala. If I look at a project like f
Re: (Score:2)
Wait, what? if lambdas are shit programming why did almost every language add them as a features in the last 5-10 years? including c++.
I think you have mostly missed my point, Scala has research oriented roots, and it you're not ok with that, fine. But if it makes you a more efficient programmer, it might just be worth the effort of picking up.
Also, this is what I mean by pattern matching:
http://docs.scala-lang.org/tut... [scala-lang.org]
https://doc.rust-lang.org/book... [rust-lang.org]
https://developer.apple.com/li... [apple.com]
Re: (Score:2)
The chains of code that bypass in nulls, aka Lamdas, monads etc. are just shit programming. Deal with the error where you made the error. Do it clearly and well commented. Making compact code isn't useful, the computer has plenty of space to hold your code.
You were born in the 90's weren't you?
Re: Why not code in Klingon? (Score:2)
you don't know what pattern matching is. the rest of your post doesn't make too much more sense, either.
Re:Twitter and Scala (Score:5, Informative)
And yet, read the other answer [quora.com] on that same Quora page.
I would also add that the opinion of an Engineering VP at Twitter might take into account a whole bunch of things that aren't applicable to the dev who is trying to decide whether learning a language is worthwhile to them. Those are two very different points of view, with very different considerations. I love working in Scala, but if I were building a team of probably over 100 engineers, I might think twice.
Also keep in mind that Twitter was one of the very early adopters of Scala. They lived through growing pains in the ecosystem that newcomers to the language will never have to encounter.
Scala has a learning curve, no doubt about it. Its design tends to emphasize features that are very general. You put in some extra effort upfront, but you get more mileage in the long run. Scala also has a very rich ecosystem of libraries that may approach the same problems with different philosophies. Some find the amount of choice paralyzing. It's a bit reminiscent of the React ecosystem. But I think I speak for many Scala fans when I say that it feels very rewarding and empowering as a programmer to work with.
Intellectual benefits aside, I've also found it to be a language for getting things done. My small team launched a mission-critical distributed system in 6 months [github.io], with me as the only veteran Scala programmer. I give a lot of credit to the extremely robust ecosystem of libraries around Scala -- especially Lightbend's Akka and Slick. A lot of ready-made tech mapped very nicely to our problem domain, and we were off to the races. The documentation is great and there's lots of support available.
My advice for the OP: take the Coursera course and/or give the Red Book [manning.com] a spin. You'll likely be challenged but also you may find it to be very intellectually stimulating.
Re: Twitter and Scala (Score:3)
Well, not really, since we want to know ASAP when these processes terminate. Sure, there's nothing about Scala that is uniquely capable of meeting our requirements. In fact, since Akka supports Java on an equal standing, we could have kept much of the same underlying technology. How
Re: (Score:2)
FWIW, it's my understanding that Scala strongly emphasizes immutable data, so unless that's suitable to your use case it may be a poor choice. And if it *is* suitable, then you should give Erlang a look.
OTOH, it you want to interface with a lot of Java code, it may be a reasonable option.
Re: (Score:2)
The argument was that scala introduces a big learning curve for new developers
If that is the problem, use PHP instead. Or BASIC.
Re: (Score:2)
Or different developers
Re: Twitter and Scala (Score:2)
Why is there always some wanker on here pretending to not know something to look cool. Fuck off.
Re: (Score:2)
Re: (Score:2)
Java is in the Philippines, stupid.
- I keed - I know it's in Indonesia.
Just look at it and program in it a bit (Score:4, Insightful)
Then figure out for yourself if you like it or not. If you're going at this from a PHB perspective just stick with Java.
Re: (Score:2)
I see. You're one of those miserable people that just focuses on whatever does them money. Then just stick with Java and don't annoy us.
Quiche eater.
Re: Just look at it and program in it a bit (Score:2)
Imagine wanting to pay the mortgage. We don't all want to live with our parents. Cheetos eater.
Re: (Score:2)
The construction industry and the banking sector appreciate your patronage.
Re: Just look at it and program in it a bit (Score:2)
If you have any other realistic way for me to own my own home feel free to share.
Rust (Score:4, Insightful)
Re: (Score:2)
I hear you about Rust, maybe... but Scala, Ruby, and Swift aren't pretty far from "flavour of the year" languages.
Re: (Score:2)
If you did mean this as written, then I just don't get your point.
If you meant are pretty far I disagree with you. 'Flavor of the year' is a figure of speech meaning they are a fad, and indication is that GP is very correct about a lot of these. Ruby is already yesterday's news, with the MEAN stack and even newer ideas taking its place. Swyft is very new and replaces Objective-C with a C#/
Re: (Score:2)
I agree to an extent, though the stumbling block is the equivalent of vocabulary - knowing all the standard libs and what they do.
However HR do not. If they want you to have 23 years experience with it then "I know something similar, I'm sure I could pick it up" just won't fly. Bastards.
Re: (Score:2)
Yeah, that was a typo, I meant "are pretty far".
I don't know how Ruby can be included in the list of "fad" langua
Re: (Score:2)
All languages that don't run on a JVM (well, Swift does, there is a cross compiler).
You know that, so why post such bullocks?
Quite often it makes sense to learn the flavour of the year language. E.g. Swift. Just to broaden/extent your horizon.
Re: (Score:2)
Or worry about every language - to the point of setting up whatever dev environment and doing a few simple things like hello world, fizzbuzz, create deck of cards, shuffle, and deal a few cards, etc. Just enough to learn how to use the tool chain, basic syntax, user interaction, etc.
Yes. (Score:3, Informative)
Re: (Score:2)
... the answer to questions in the form of "should I Move from Java to _____?" is almost always "yes"
The reason being? As others will have pointed out, Java is used in incredibly many places - Android apps, Java application servers even in Oracle databases. IBM mainframes even have dedicated Java CPUs as an option. In short, there are loads of career opportunities that expect you to code Java.
And the language as such is easy to learn - if you have learned C, you are almost there. The downside of Java is that it has been taken over by standards for absolutely everything computers do; but the upside is that
Re: (Score:2)
Re: (Score:2)
Actually, the most profound book about concurrency I ever read is "Concurrent Programming in Java" by Doug Lea.
His book basically became part of the Java Standard.
But in general I agree with you, Java sucks. The JVM not so much though.
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
"That's not to say that functional programming techniques aren't occasionally useful when developing graphical interfaces - just that if a functional programming purist tries to put together a graphical interface then the result is similar to what one might get if one tries to repair a car engine using only a set of hammers (an insane mess)"
True. To a point. But all the ot new tech in the Front-End world is based on a paradigm where you have ONE global state and a function that maps that to a screen. React,
Re: Yes. (Score:2)
It's wordy and ugly. It reminds me a bit of COBOL.
Re: (Score:2)
I like C-style curly braces, but in general I find VB easy to read. I never had to use COBOL (or the older VB, until recently), so I don't have these associations. VB reminds me of Pascal. I learnt Pascal before C, and never grew to like C syntax.
Re: (Score:2)
Location, Location, Location (Score:5, Funny)
I don't know where Scala is, but Java sounds like a nice place to live.
Re:Location, Location, Location (Score:5, Informative)
I don't know where Scala is, but Java sounds like a nice place to live.
It's in Milan, Italy. See La Scala [wikipedia.org]. Also a nive place to live.
Re: (Score:2)
I thought Scala was dead. [slashdot.org]
Oops. Never mind...
For a Project or a Career? (Score:2)
For a career - look at jobs in your area. Are more people hiring for java or scala? You can learn both of course. Rust is also worth looking into.
But scala is just a language. You don't need to be "math genius" to use one language over another.
Re: (Score:2)
So looks like e C's fucked, then?
Re: (Score:2)
Difficult, enjoyable, productivity, consequences (Score:4, Insightful)
I have a PhD in CS and have coded in many many languages.
Difficult: Yes, I find that is the most difficult language I've ever coded in, but I really enjoy it. The difficulty mainly has to do with the type system, the compiler, and what I call Shiny thing syndrome (STS). When first learning I found occasional surprised in assignments because I had the same types on the left and right hand side, but did not. When examining the types, one would observe a page describing it. This can cause frustration for the novice. The compiler messages and the documentation have both improved immensely in recent years, so this is not as bad a problem as it once was, but still, the documentation is not a gentle guide for the initiate to understand the language. Finally, STS. There are some aspects of the language that seemed to have been simply shoe-horned in, often syntactically. That is, there are many multiple ways to do the exact same thing and all where shoved in because they exist that way and were a shiny thing in some other language. This hurts the language in my opinion.
Enjoyment. I find that when I am coding in Java or other languages I miss features of scala. I have grown to prefer scala over java, which I didn't initially think that I would. I find that I can write a lot of code for 30 minutes in Java or I can sit on my hands looking at the screen for 25 minutes and write for 5 minutes a beautiful piece of code that does the same thing with Scala. The code has an elegance and beauty to it. Actually I don't think I stair at the screen all that long anymore but switching to functional was initially quite the paradigm shift for this old fart.
Consequences ( Scala is not without its issues):
1) The difficulty of the language makes it very difficult to be productive with novice coders on your team. Don't do it.
2) Some aspects of the language: e.g. Macros, implicit parameters, implicit types, can make for elegant code, but can also make your code look like magic that will baffle your (less than stellar) team member. Use with caution.
3) You will think different after mastering it, that is a good thing. Nothing special about scala, you should learn new languages frequently for this reason.Scala will help you.
4) Don't do it because it is a hot new language, don't do it because you think it will solve a problem better than another or you'll make more money, do it because you love to code and you want to explore using a new tool set. Do it for the fun. I enjoy coding in Scala much more than java, and the akka actor framework is great. But you will find many analogues to the actor framework (example go routines, rust channels etc)*, but it all addresses the difficulties of multi-threading, which are somewhat cumbersome and error prone in Java.
*Yes I know they are different, before you pretentiously lecture me on the difference, please realize that I am comparing not contrasting here. They all have the same goal to approach simplifying life in the multi-threaded environment.
Anyhow, my advise is pursue learning scala with vigor and wild abandon. I'd also recommend go-lang and rust, they are cool also. After you learn them then decide on the tools that you want to work professionally in. You will not be harmed by the effort.
Re: (Score:2)
I have a PhD in CS and have coded in many many languages.
In other words, "I have worked a lot in fake environments in many languages".
You got a PhD in part because of a language that is controversial, and you consider that a win? The value of a CS PhD just dropped a few points.
I too have coded in many different languages. Tcl/Tk was painful, but doable. Javascript was painful and not doable. Sed, awk, bash,various assembler, C,, C++, Java, Perl, Python is a subset of languages I've coded in.
Never used Scalia, probably never will. I'm old, odds are
Re: (Score:2)
You got a PhD in part because of a language that is controversial, and you consider that a win?
I'm sorry, in what part of his post did he say that?
Re: (Score:2)
It's projection. He feels he needs to exert dominance and show that he is better than people with doctorates which is kind of entirely pointless due to different people working on different things.
Re: (Score:2)
Re: (Score:2)
Second - how can you get any more snotty than putting down all doctorates as working in fake environments? I really do not see how that does anything other than reflect on the person who is trying to devalue the work of a vast number of others while blowing their own trumpet.
Re: (Score:2)
In other words, "I have worked a lot in fake environments in many languages".
Or, to rephrase what you said "I have my head permanently lodged up my arse".
You're welcome.
Scala is definitely worth it (Score:5, Interesting)
Scala has achieved critical mass, it has shown steady growth over the years and will likely continue. It is entirely possible it will never become as big as Java but that should not be the requirement, it is plenty big enough you can count on it.
I have been developing large scale projects in Scala for the last 6 years and I can't imagine going back to Java now. Scala makes it easy and fun to write good correct code.
Scala is boilerplate free, it feels a bit like your favorite scripting languages yet with compile safety a powerful type system and lot's of help from IDE.
Obviously Scala supports Functional Programming which is essential as everything becomes multi threaded and/or distributed. Scala makes it easy to write functional code and is immutable by default, yet it isn't opinionated and you can use other paradigms when they make things easier/faster.
It's fun to write, you don't have to be a genius to use it, though with weak members on your team you will want a strict style guide. I found using Scala is a selling point when recruiting top talent, even those who never used it. Those who have used it, especially coming from a Java background are instantly hooked.
This was verified again in recent Stack Overflow developer surveys where Scala came out to be a very loved language, nearly everyone who tries it falls in love.
I highly recommend
Re: (Score:2)
Re: (Score:2)
> Scala has achieved critical mass
No it hasn't. Unless we're talking about in your delusional mind.
> It is entirely possible it will never become as big as Java
No it isn't. Unless we're talking about in your delusional mind.
> Scala is...
Mostly garbage. Java has everything Scala has and isn't designed by retarded monkeys.
Long way to go (Score:5, Funny)
If you want to schlep all the way from Indonesia to Italy, sure, why not.
Relevant article (Score:2)
I don't have a particular opinion, other than the common concerns about its performance and resource utilization. But I tend to code at the traces anyway.
Probably yes (Score:5, Informative)
First, background: I have been using Java at work, at least part time, since 2005. I started getting paid to write scala since 2012. I've definitely ran large, critical applications in Scala: I am running some right now.
Scala is a far more featureful, complicated language than Java is. A lot of what it gives you is really very high quality syntactic sugar (case classes, lambdas, pattern matching), but the one thing that sets it apart is its type system.
The trick is that nothing forces you to use Scala as if you were using Haskell instead: You can use it as a more sugary Java, using the extra type system fun sparingly. Restraint is the name of the game here, and also the reason some people have Scala horror stories: A company decides that Scala sounds great, and then hire some hotshot scalaz committer to teach everyone else how it's done. Then your codebase is full of operators that look like line noise, every class extends a base that comes straight from category theory, and half the developers say 'screw this, let's rewrite it all in Go!'
There is value in the category theory, and using arcane libraries like cats or shapeless, but 99% of the time, you don't need to: Just like back in the 90s you had to stop people from overusing OO design patterns, or their code will end up looking like Spring, Scala shops have to remind people to do the same when it comes to higher kinded types, hlists and concepts out of category theory. You really don't need any of that to use Scala successfully. Just ending up in a world where you typically don't need either a mocking library or any dependency injection nonsense is more than enough to switch. (Curse you Rod Johnson!)
The one thing where I would make people spend some time studying is in basics of functional programming, the very first of which is to learn to remove side effects from code, and clearly separate code that changes state from computation. Chances are you were doing some of that already in Java if you were hoping for a good unit test suite, but it's more important in Scala
Career wise, the more is a no brainer IMO: If you write Java, you are one in a very large pool of completely generic candidates that can use Spring and Hibernate to do something super boring. In Sala, you enter a smaller pool that most of the most average Java developers will never try to enter, so, on average, the job will be more interesting, and the pay will be higher.
Re: (Score:2)
Scala is such a language, that is why the question was risen.
Hip and professional (Score:3)
Choose one.
Re: (Score:2)
Scala is no longer hip.
Kotlin (Score:3)
Re: (Score:2)
Re: (Score:2)
Bigger teams require simpler tools (Score:2)
The bitter lesson I've learned over the years is that the larger the team, the simpler the tool set and the less clever the implementation must be.
And it makes sense. You pretty much have to target the 10th percentile programmer in your organization or your going to have your systems ruined over time.
In a small organization, you can probably hire selectively enough that your 10th percentile programmer can handle Scala. In a large organization (like Twitter is now), not so much.
Re: (Score:2)
Very good point indeed. You should have posted under a real name to make it more visible!
Only If You Plan For Your Code 2 B Incompatible (Score:4, Informative)
Re: (Score:2)
In fact, every Java class converts 100% to Groovy; take any Java class and change the '.java' extension to '.groovy' and it will compile without issue.
That is not necessarily true.
E.g. if you have attributes with "default" access and a getter or setter it will not compile.
Regarding this: people neglect to point out that Scala is NOT compatible with Java; what do you mean with that? Java code calls Scala code and vice versa without problems, but I don't use Scala intensively enough.
This is because it is not
Puff (Score:2)
Since *when* has being "hip" been an attribute, much less a desirable one, of a competent language? The only friggin' professionals who speak in those terms are marketers.
Fad languages (Score:2)
There are a zillion fad languages out there. Each (presumably) excels at something, but most languages that are not in widespread general use will usually suck at anything outside the core competency of that language. Second-tier languages also have smaller communities developing tools and components, making them less desirable. Finally, if you ever need to hire programmers, you seriously limit your pool of available candidates if you lock yourself into a language that is not in widespread use.
My advice:
Switching from Java to Scala (Score:3)
1) Do you need a degree or to dive into the math to make effective use of the language? No. Like any programming language you can just learn the patterns and apply them. That said, like any programming language, if you learn the math behind why it works you can make more effective use of the language. (You are probably using monoids, functors, monads, and maybe applicative functors in any large program. Not knowing what those are doesn't mean you aren't using them.)
2) Would I recommend switching?
I having been programming professionally for 31 years. I have been programming Scala since 2010. I have taught about a dozen people the language. Much like, "Should I quite my day job to put all my time into my startup?", the answer is probably, "not right now". If you can get the same or better pay, under the same or better conditions, then obviously yes, make the switch. Otherwise if the language interests you (same answer for the startup) then work on it in your spare time with your day job giving you the security you need to expand your horizons. As a programmer learning new languages will make you a better programmer. Learning languages like Scala or Haskell which lean so heavily into functional programming and their higher-kinded type systems will definitely expand your knowledge. Additionally you'll then be able to decide if a switch is worth it FOR YOU rather than relying on getting a useful answer from a infinite number of monkeys banging on an infinite number of keyboards.
All that said no company would pay the price I would demand to code in Java again.
Scala? Yeah, Right. (Score:2)
I got stuck maintaining a bunch of Scala code at one point, and I'd say "no thanks." Why?
The code wasn't any more error-free than any other code, but it was an order of magnitude more difficult to maintain. It also didn't seem to speed up the development process any; the devs were just as late as they were without Scala.
Scala developers are also expensive and hard to find, two things that make finding a "Scala maintainer" a difficult task.
Unless you're willing to invest in supporting it, I'd say no. If you
Re: (Score:2)
You bring up a good point.
At the end of the day maintainability is very important in a software system. For many systems I'd say its more important than initial productivity.
Many features in the language is not as important. In fact, I'm a big fan of one of the most feature free languages ever: Smalltalk.
So Java has the advantage of being more predictable and more maintainable.
My big gripe is some of the crazy frameworks you have to deal with.
Scala is great if you use it the right way (Score:2)
No question there's a learning curve, but you don't have to be a genius to learn Scala and use it effectively. Is Scala there to stay? Yes. I've used it successfully at TraceLink, Inc and CiBO Technologies, Inc and am a big fan. Scala is richer and more expressive than Java and eliminates annoyances like checked exceptions. The key is the principal of minimum power (use the smallest hammer that gets the job done) and some consistency in style across the team. If people go meta-nuts with advanced language fe
No (Score:2)
No
SInce you asked ... (Score:2)
No!
Fashion? (Score:2)
Should i dress white or black today? Should i wear a fancy shirt or a hoodie when going to work?
So no, unless you have a really compelling reason (like: the project i am currently doing sucks in java and would be very nice in scala), stay with what you know.
Re: (Score:3)
Re: (Score:2)
"If you really care enough to do something which benefits us all, you anonymously create a foundation focused on creating Free Software, and leave your entire fortune to it in your will."
Yeah, but here is the Catch-22: You first need to program for the $$s to get that fortune in the first place
Re: (Score:2)
They are in it just for the monies. It does make me seriously sad, and one of the main reasons I am quitting my job. But I kindof believe that a lot of workpaces are like that.
I think that's pretty close to the definition of work, something somebody else wants me to do for money. I think the number of people who are "living the dream" is <0.01% or less. And if I had a billion in the bank it would be a lot more "when I want it, how I want it, the days I feel like it". Like today I'd just like to be a beach bum. Or just soothe a hangover. Or sit inside and play WoW. I'm not complaining about work, as work goes it's very nice. But if money really was no subject at all... nah, I'd
Re: (Score:2)
If you have time and interest work in Scala in your own time, learning a new language is always good, even if there is no direct monetary pay off
Re: (Score:3, Informative)
Of course, you can work with a project like that in C (for example), and I've seen it done, but you need to have strong leadership architecting the code and making sure things stay clea
Re: (Score:2)
the language itself is terrible ... on varying levels of terrible, though.
When people write stuff like this, I really wonder about what they are talking. Or which languages they don't find terrible.
IMHO bottom line all languages except SmallTalk are terrible
Re: (Score:2)
Why don't you mention the thinks you consider a flaw.
Except that I have to write in front of every attribute "private" and most methods "public" I'm not aware of any flaws.
Re: (Score:2)
Damn, I posted basically the same thing above. See here:
https://slashdot.org/comments.... [slashdot.org]
I am surprised that java developers don't seem to know how to create output parameters. As stated in my first post above, I am not saying this is a good idea but here is how you do it if you need to:
int[] out1 = new int[1];
int[] out2 = new int[1];
int[] out3 = new int[1];
void setOutParameters(int[] v1,int[] v2, int[] v3) {
v1[0] = 1;
v2[0] = 2;
v3[0] = 3;
}
setOutParameters(out1,ou
Re: (Score:2)
The big draw of java has to be the inter-changeability of programmers. Sure there are the rock stars, but for every rock star there are many people that corporations have come to see as being generic programmers in various tiers of accomplishment, that they can draw from a large pool and they know what they can generally expect from each level.
I think it makes sense to learn another language (programming or otherwise) though I think I'd look at one of the classics over scala, maybe even choose clojure
Re: (Score:2)
You can't be serious. Java has many nice features. But Scala won't get you away from the JVM.
Re: (Score:2)
Re: (Score:2)
I guess you're just retarded then.
Re: (Score:2)
No, that would be you if you don't even understand why Java exists.
Re: (Score:2)
Still can't figure out why java exists... It is not just that the JVM is bloated but the language itself is terrible.
Java exists to bring higher level programming to the masses.
Before Java we wrote in C and C++ because these were the only languages fast enough for real world use. Using anything else (like Smalltalk, Lisp or Pascal) was considered just silly university theories.
Java is the language that popularized the concept of virtual machines, garbage collection, and interpreted languages for real world use.
Note that languages such as Python existed before Java, but they were ignored entirely by industry. Java made it
Re: (Score:3)
I agree. Most of the higher-levels language we use today are usable because the computers and implementation technology got fast enough make them practical. A lot of compiler tech, especially in run-time code optimisation and JIT and VM's, came out of years of experience with Java. Al the higher-order abstractions such as Lambdas, Continuations, Closures and such stuff was known in 1960s and 70s, but the implementation tech was just not up to it. In the end, programmer productivity is what counts, it is che
Re: (Score:2)
Re: Java is garbage (Score:2)
Perhaps because it's one of the world's most widely used development languages and if something works, it's hard to make a business case to rewrite it just because some snob on Slashdot has a hard-on for another language.
Re: (Score:2)
0. Understand that while OO is sometimes a good thing, not everything is (or belongs in) an object. Math.sin() my arse. It's a fucking function.
Re: (Score:2)
Is it stable yet, though? (It *has* been a while since I looked at it.)
Re: Maybe Kotlin (Score:4, Informative)
It's quite stable at this point. JetBrains has released version 1.1 and anything written in 1.0 will work long term. We're using it in production and have had zero issues. I honestly don't see how someone could pick Scala over Kotlin if they've actually looked at Kotlin seriously. This biggest win is that it's syntax is close enough to Java that a new team member can read it and understand the code without even having worked in it at all.
Re: (Score:2)
Re: Perlis Languages (Score:2)
Stretching your brain is a good thing, but the work environment cannot assume a ready supply of enlightened developers to maintain high brow code. Some learning is best on your own time.
Re: (Score:2)
You've piqued my interest: what's so special about Scala? I always thought it was just another language with a more complex type system, and somewhat less verbose. The only time I met it in real life was to replace a really badly performing Scala application (using Akka, which I didn't try to understand) with a straight-forward Java application, which didn't leave a positive impression, but that was 5 years ago.