Computer Science Canada Scala and Java: A Quick Swing Comparison by Example |
Author: | wtd [ Sat Dec 03, 2005 7:36 pm ] | ||||
Post subject: | Scala and Java: A Quick Swing Comparison by Example | ||||
To be equitable, Java syntax highlighting is not used. More on the interesting features of Scala (as seen here) in a bit. Java:
Scala:
|
Author: | wtd [ Sun Dec 04, 2005 3:17 pm ] | ||||||||||||||||||||||||||||||||||||||
Post subject: | |||||||||||||||||||||||||||||||||||||||
Noteworthy differentiations from Java, in no particular order:
|
Author: | wtd [ Sun Dec 04, 2005 6:09 pm ] | ||||
Post subject: | |||||
Modified examples, where the button is a subclass of JButton. Java:
Scala:
|
Author: | Cervantes [ Sun Dec 04, 2005 10:12 pm ] |
Post subject: | |
So wtd, what's your review of Scala, so far? You seem to be spending a lot of time with it. |
Author: | wtd [ Sun Dec 04, 2005 10:25 pm ] | ||||
Post subject: | |||||
Parameterized classes The major distainction between the two examples in the previous post boils down to:
vs.
In the Java example, the MyButton class has a constructor which takes two Strings. The first is the text to display in the button. This it passes to the constructor for the JButton class. The second String is the message to print to the console when the button is clicked. In order to use this second value in the actionPerformed method, we have to assign it first to an instance variable which will still be in scope when the constructor is finished. Scala dramatically simplifies this. The values passed to the class become accessible to any method. |
Author: | wtd [ Sun Dec 04, 2005 11:14 pm ] |
Post subject: | |
Cervantes wrote: So wtd, what's your review of Scala, so far? You seem to be spending a lot of time with it.
I rather like it. It's not flawless, but it addresses a number of concerns I had in the Why Java Sucks thread. |
Author: | wtd [ Mon Dec 05, 2005 12:23 pm ] | ||||
Post subject: | |||||
A further use of mix-in composition to implement this absurdly simple program.
The actionPerformed method is here defined within the PrintAction class, and then that class is mixed into the new button class. I've also come to learn that Scala does in fact support anonymous inner classes, so the first Scaa example I gave can be more directly translated from the Java, and can better demonstrated the brevity the language makes possible.
|
Author: | wtd [ Tue Dec 06, 2005 1:51 pm ] | ||||
Post subject: | |||||
In the previous post I had this code:
That's all well and good, and it's a pretty straightforward transition from Java, but with somewhat prettier syntax. Let's diverge a little bit further.
|
Author: | wtd [ Tue Dec 06, 2005 8:16 pm ] | ||||
Post subject: | |||||
New app. Java:
Scala:
|
Author: | wtd [ Thu Dec 08, 2005 4:34 pm ] | ||||||
Post subject: | |||||||
For a possibly fairer comparison, and an example of using Java code within Scala seamlessly, I created the layout for my app in Java, but left actions for a superclass.
Then I wrote a Java program that implements actions for the window:
And I wrote a Scala program that does the same.
|
Author: | rizzix [ Thu Dec 08, 2005 7:06 pm ] |
Post subject: | |
Language seems to fit OK with the Java Philosophy. It's nice. But there are somethings I particularly don;t like, although it' just a matter of taste here.. really.. The language seems to be well-designed otherwise. #1: I don't like replacing the * with _ in the import statements. * is universal as a "match everything" delimiter in many different languages and syntaxes. #2: The infix notations is odd and can be very confusing. It fails to effectively establish a relationship between the object and the message (speaking in OO terms). Otherwise it's quite acceptable. #3: I never did like mixins. I know it is a very powerful feature, but I can only imagine how complex OOD can be having it around. Although I believe Scala places particular restrictions on what classes can be mixed-in thus making it a whole lot "safer". Which is a good thing. Yet I still believe it can be improved further, can't it? #4: I'm not a big fan of two character operators. Specially those "<-" ones. Although I can live with it. |
Author: | wtd [ Thu Dec 08, 2005 7:40 pm ] | ||||||
Post subject: | |||||||
rizzix wrote: #1: I don't like replacing the * with _ in the import statements. * is universal as a "match everything" delimiter in many different languages and syntaxes.
You can perhaps see how, when * is a valid identifier, and we have (the equivalent of) static imports, that using * as a catch-all for imports is a problem. Plus, think of Haskell, where _ is the catch-all, throw-away pattern. Scala does pattern matching. ![]() rizzix wrote: #2: The infix notations is odd and can be very confusing. It fails to effectively establish a relationship between the object and the message (speaking in OO terms). Otherwise it's quite acceptable.
Either syntax is available. ![]() Plus, it offers a nice way to eliminate some syntactic noise, such as in the addition of the action listeners. Or consider:
vs.
|
Author: | rizzix [ Thu Dec 08, 2005 9:53 pm ] | ||
Post subject: | |||
why not:
|
Author: | wtd [ Thu Dec 08, 2005 11:04 pm ] | ||
Post subject: | |||
rizzix wrote: why not:
I knew you were a closet Ruby fan! ![]() You could do that, but the dilemna with allowing parentheses to be removed are precedence issues. Ruby certainly has this problem, and while it's surmountable, I can't help but think you'd find it rather distasteful. I've found Scala's precendence rules quite nice. |
Author: | rizzix [ Thu Dec 08, 2005 11:21 pm ] | ||
Post subject: | |||
I'm not well versed in Ruby.. could you elaborate? Btw I was going to suggest
|
Author: | wtd [ Thu Dec 08, 2005 11:27 pm ] | ||||||||
Post subject: | |||||||||
Well, you might have:
Which is equivalent to:
And that's all well and good, but...
Is this:
One thing that constructing the Swing comparisons in previous posts did make me envy from the Smalltalk side of things... Smalltalk's semi-colon. Being able to easily send multiple messages to the same receiver without having to specify the receiver repeatedly. |
Author: | rizzix [ Thu Dec 08, 2005 11:48 pm ] |
Post subject: | |
that's why Obj-C's/Smalltalk's multi-part methods are soo cool! (but implementing that would mean "No Java Compatibility". edit: wait.. OR.. define a tuple as (T, K, L, ...) then you could have the cake and eat it too ![]() |