vote up 3 vote down star

Syntactic sugar for properties for example in C#:

private int x;

public int X{
    get { return x; }
    set { x = value; }
}

or simply

 public int X{ get; set; }

I am missing verbatim strings in java... @"C:\My Documents\" instead of "C:\\My Documents\\"

Do you agree Java needs more "sugar"? Any one knows is there is sugar coming in next Java versions?

flag

50% accept rate
Asking for information on the direction of the language is not argumentative, nor is it subjective. Parts of the post are subjective, but not all of it. Reopened. – tvanfosson Dec 19 '08 at 18:21
I agree Java needs to move forward, not only syntactic sugar, but new concepts as well. Nowadays, it's loads more fun to code in current C# than in current Java. – Vinko Vrsalovic Dec 19 '08 at 18:23
Actually, the posted code won't work. You need to either get rid of the private field, (3.0 style) or put the return and assignment in explicitly. – chris Dec 19 '08 at 18:54
thanks chris, fixed it – jpmartins Dec 19 '08 at 20:03
@chris: What happen if you use: public int X{ get; } ?? My guess is the following won't compile: object.x = 1; ? – Oscar Reyes Dec 19 '08 at 20:33
show 2 more comments

16 Answers

vote up 0 vote down

I've written some annotations (and an annotation processor) that helps this quite a bit.

See http://code.google.com/p/javadude/wiki/Annotations

For example:

@Bean(
    properties={
        @Property(name="name", bound=true), // String is default type
        @Property(name="age", type=int.class, bound=true)
    }
)
public class Foo extends FooGen {}

This generates FooGen containing the fields and get/set methods, as well as making them bound (which is optional). There are many other fun things you can do with these as well.

NOTE: I'm doing a few tweaks now that deprecate the various "override" options.

Enjoy,

-- Scott

link|flag
vote up 0 vote down

I disagree.

link|flag
vote up 0 vote down

The java platform has adopted a huge amount of programming languages. If you want more syntactic sugar you could use another language like Groovy or (J)Ruby and it will still run on the jvm and work with your other java-libraries. (I even think there is a C# implementation ;)

link|flag
vote up 3 vote down

As per Mark Reinhold's talk at Devoxx 2008, property support will not be added to Java in Java 7.

http://hamletdarcy.blogspot.com/2008/12/java-7-update-from-mark-reinhold-at.html

More info on properties in Java 7 ideas here:

http://tech.puredanger.com/java7#property

link|flag
vote up 0 vote down

I don't like "syntactic sugar" as is mainly because it would be yet another thing to learn and would most likely get abused eventually. I have cursed at the annoyance of making getters and setters myself though so I understand why one would want to make creating those as easy as possible but I'd rather see @Get, @Set and @GetSet annotations than more syntax thingamajiggers to do the job.

link|flag
Seem to me a nice idea, Get/Setter annotation could do the trick... as long it lets you change the getter or setter behavior down the line without breaking the object interface. – jpmartins Dec 19 '08 at 20:41
It's not "another thing to learn", because you have to learn the "setVar"/"getVar" pattern anyway. – niXar Dec 24 '08 at 23:43
vote up -1 vote down

As with many, i am stuck to manage application written in Java 1.4 (migration to 1.5 is one the way in many cases). So even if Java 7 or 8 get new feature I will not be able to used them... Anyways syntactic sugar is good, it can help the writing, reading and analysis of code.

link|flag
vote up 1 vote down

If I use java for anything large again, it will be as an output language from another compiler.

link|flag
vote up 2 vote down

While properties are nice, they are not java. I seriously think the javabean spec closed that door ages ago. I think there are clearer cases for syntactic sugar that is needed:

  • Use of inner classes due to lack of delegates/closures. Current syntax is from hell.
  • Methods as first-order language constructs, ie method data types.
  • Type inference with generics
  • Run-time presence of generics in reflection API.
  • Events
link|flag
vote up 0 vote down

One thing Java would do really well to implement is something equivalent to ref and out parameters.

link|flag
vote up 1 vote down

I've also developed in both Java and C# the last few years, and find C# a superior language with regards to expressiveness and powerful language constructs. The Java language does not undergo the same degree of changes and updates as C#, atleast not at the same pace. I still don't necessarily mean that Java should be drastically updated, but we need a powerful and expressive statically typed language on the Java platform. I think Scala is going to develop into this replacement language, which we Java developers can switch to when ordinary Java does not cut it.

C# is an absolutely fantastic language; probably the "best" statically typed language these days, but Java is still in my opinion a superior platform. I like Java the platform, and I like C# the language.

link|flag
vote up 7 vote down

"Syntactic sugar causes cancer of the semicolon."

-- Alan Perlis. Epigrams on Programming.

link|flag
Funny but not a real answer. Should I downvote this?... mmhhh I'm tempted... mmmmhh... Naahh I think I would save 1+ of my rep :P – Oscar Reyes Dec 19 '08 at 21:38
Thanks! Re: "real answer", others have answered this question quite well. – Diomidis Spinellis Dec 20 '08 at 11:36
vote up 8 vote down

While I don't necessarily agree with Java's philosophy, I think that adding lots of syntactic sugar to Java would go against its philosophy. Java is supposed to be a very simple, easy to reason about language with few constructs, kind of a lowest common denominator lingua franca in the programming community. It was largely a reaction to the complexity of C++. There is supposed to be very little "magic" in it, beyond what is needed (garbage collection, mostly) to make it a memory-safe language.

If you want more sugar, etc. in a reasonably high-performance, statically typed language, I would say that Java is just the wrong language for you. You're probably better off just using C#, or maybe D.

link|flag
"Java is supposed to be a very simple", agreed, but there are things in Java that can get messy... why not add "sugar" to make things more enjoyable? – jpmartins Dec 19 '08 at 20:29
because as soon as more sugar is added, unintentional complexity ensues =) – Chii Dec 20 '08 at 12:40
vote up 0 vote down

This isn't entirely necessary.

A simple editor macro could work:

prop int x -->

private int x;

public int getX(){
   return x;
}
public void setX(int val){ 
   x = val;
}

Edit: (in response to comments)

How is this any less readable than:

private int x;

public int X{
    get { return x; }
    set { x = value; }
}
link|flag
yes, in terms of writing it is true... in terms of reading... I am not so sure... – jpmartins Dec 19 '08 at 18:31
Agreed. Code is read many more times than it is written. – Bent AndrĂ© Solheim Dec 19 '08 at 18:45
In your first example the property is written with two separated methods, in the second there is only one construct, the property, composed by a setter and a getter. More the second can be written in a even more simplified to read way like Matt Briggs pointed out. – jpmartins Dec 19 '08 at 19:38
why don't you just make the attribute public? That's far more readable, simpler ( and awful ) public int x; // that's it! – Oscar Reyes Dec 19 '08 at 20:26
public fields causes a leak in the implementation. – Chii Dec 20 '08 at 12:40
vote up 9 vote down

Sounds like you want Groovy... Apparently properties are on their way, although not in Java 7 (as @erickson helpfully corrected me about in a comment).

Groovy does have nice string sugar.

link|flag
Yes! Java should integrate some of Groovy's features. – Vinko Vrsalovic Dec 19 '08 at 18:26
Remi Forax and others are working on properties, but it's definitely not a done deal for Java 7. JavaFX properties should help them along though. – sylvarking Dec 19 '08 at 18:29
I'm not positive they are out, but I think they are unlikely. Joe Darcy is leading the effort to collect "small" language changes for Java 7, implying that there's not enough time left to settle "large" changes. Check out Alex Miller's Java 7 language clearinghouse: tech.puredanger.com/java7 – sylvarking Dec 19 '08 at 19:43
Agree. Groovy is good for that and lot more. – Oscar Reyes Dec 19 '08 at 20:36
vote up -1 vote down

Sugar is bad for your teeth. Syntactic sugar is bad for your brain.

link|flag
but sweet for my eyes and... fingers... – jpmartins Dec 19 '08 at 18:18
Hear hear. Assembly language forever. – mackenir Dec 19 '08 at 18:18
No, it's good. Automatic properties, for example, mean that when reading code you can see more on the screen at a time and your brain spends less time doing mundane parsing and more time evaluating the meaning of the code. – Joel Coehoorn Dec 19 '08 at 18:18
joel +1, paul -1. – Vinko Vrsalovic Dec 19 '08 at 18:20
@Joel -- agreed! – tvanfosson Dec 19 '08 at 18:22
show 3 more comments
vote up 1 vote down

That is oldschool C#. Nowadays it is

public int X { get; set; }
link|flag
Sorry, I don't code in C# for quiet some time. This is just two things I miss from the old days at school, since Microsoft practically kicked Java out of all the school curriculum.... but that's a different story any way... – jpmartins Dec 19 '08 at 18:15
Microsoft hasn't even come close to equaling java in University curriculum. I know very, very few major universities that use C# honestly. – Simucal Dec 19 '08 at 18:24
What about major universities that use C# dishonestly? :) – GalacticCowboy Dec 19 '08 at 18:29
In Portugal all major Universities know have strong connections to Microsoft... – jpmartins Dec 19 '08 at 18:33
It was not "old days @ school" but " C# old school " read ( first C# programmers). I don't quite get this anyways. If X is public, the get/set are kind of already there... why don't just use it : public int X; and call object.x = 1; int a = object.x; – Oscar Reyes Dec 19 '08 at 20:31
show 6 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.