up vote 89 down vote favorite
20
share [g+] share [fb]

I came across some Java code that had the following structure:

public MyParameterizedFunction(String param1, int param2)
{
    this(param1, param2, false);
}

public MyParameterizedFunction(String param1, int param2, boolean param3)
{
    //use all three parameters here
}

I know that in C++ I can assign a parameter a default value. For example:

void MyParameterizedFunction(String param1, int param2, bool param3=false);

Does Java support this kind of syntax? Are there any reasons why this two step syntax is preferable?

link|improve this question
This is a question about Java. I don't think it should be tagged C++. – John Dibling Jun 15 '09 at 18:05
3  
retagged minus c++ – Deinumite Jun 15 '09 at 18:09
No. However, the Builder pattern can help. – Dave Jarvis May 27 '10 at 2:58
feedback

8 Answers

up vote 58 down vote accepted

No, the structure you found is how Java handles it (i.e. with overloading instead of default parameters).

For constructors See Effective Java's Item 1 tip (Consider static factory methods instead of constructors) if the overloading is getting complicated. For other methods, renaming some cases or using a parameter object can help. This is when you have enough complexity that differentiating is difficult. A definite case is where you have to differentiate using the order of parameters not just number and type.

link|improve this answer
feedback

No, but you can use the Builder Pattern, as described in this Stack Overflow answer.

As described in the linked answer, the Builder Pattern lets you write code like

Student s1 = new StudentBuilder().name("Eli").buildStudent();
Student s2 = new StudentBuilder()
                 .name("Spicoli")
                 .age(16)
                 .motto("Aloha, Mr Hand")
                 .buildStudent();

in which some fields can have default values or otherwise be optional.

link|improve this answer
1  
I gained a huge bit of insight thanks to this post.. Really thanks – baash05 Oct 4 '11 at 12:45
feedback

Unfortunately, yes.

void MyParameterizedFunction(String param1, int param2, bool param3=false) {}

could be written in java 1.5 as:

void MyParameterizedFunction(String param1, int param2, Boolean... params) {
    assert params.length <= 1;
    bool param3 = params.length > 0 ? params[0].booleanValue() : false;
}

But whether or not you should depends on how you feel about the compiler generating a

new Boolean[]{}

for each call.

[edit]
For multiple defaultable parameters:

void MyParameterizedFunction(String param1, int param2, Object... p) {
    int l = p.length;
    assert l <= 2;
    assert l < 1 || Boolean.class.isInstance(p[0]);
    assert l < 2 || Integer.class.isInstance(p[1]);
    bool param3 = l > 0 && p[0] != null ? ((Boolean)p[0]).booleanValue() : false;
    int param4 = l > 1 && p[1] != null ? ((Integer)p[1]).intValue();
}

This matches C++ syntax, which only allows defaulted parameters at the end of the parameter List.

Beyond syntax, there is a difference where this has run time type checking for passed defaultable parameters and C++ type checks them during compile.

link|improve this answer
2  
Clever, but varargs (...) can only be used for the final parameter, which is more limiting than what languages supporting default parameters give you. – CurtainDog May 26 '10 at 22:20
2  
I've added an example for multiple defaultable parameters. – ebelisle May 27 '10 at 2:52
1  
that's clever but a bit messy compared to the C++ version – Someone Somewhere Nov 4 '11 at 18:27
feedback

Sadly, no.

link|improve this answer
3  
Is it so sad? Doing so would introduce potentially ambiguous function signatures. – Trey Jun 15 '09 at 19:46
1  
I agree with Trey. This isn't sad :) and since default parameters exists since a long time, I guess Java engineers have some good reasons to don't include it ;) – AkiRoss Jan 21 '10 at 11:42
2  
@Trey: languages with default parameters often ditch function overloading since it is then less compelling. So no ambiguity. Beside, Scala added the feature in 2.8, and somehow solved the ambiguity issue (since they kept the overloading for compatibility reasons). – PhiLho May 24 '11 at 13:09
@PhiLho Yup, I love Scala but I don't mind lack of the feature in Java. It's really not that big of a deal that it is missing IMO. Scala allows them most of the time but will, in some circumstances at compile time, produce AmbiguousSignature errors (or something like that). – Trey Jun 4 '11 at 4:45
@Trey: read up how Ada implements overloading and default parameters and how Ada avoids ambiguity with named parameters. It take time to get the design right. Time the Java Team did not have. — PhiLho: Like Ada Scala has named parameter. A simple way to solve the problem. And they make the code better to read on top. – Martin Sep 18 '11 at 12:53
feedback

No. In general Java doesn't have much (any) syntactic sugar, since they tried to make a simple language.

link|improve this answer
2  
Not quite. The bitter truth is that the team was on a tight schedule and had no time for syntactic sugar. Why else would const and goto be reserved keywords which no implementation? — Especially const is something I miss bitterly — final is no replacement and they knew it. — And if you made the concious decision to never implement goto you won't need to reserve the keyword. — And later in the Java Team cheated by making the Label based break and continue as powerful as a Pascal goto. – Martin Sep 18 '11 at 12:46
feedback

You can do this is in Scala, which runs on the JVM and is compatible with Java programs. http://www.scala-lang.org/

i.e. class Foo(var prime: Boolean = false. val rib: String) {}

link|improve this answer
or, he has add this feature to java...hmm, I like the way it sounds :P – iamcreasy Oct 13 '11 at 7:41
feedback

NO.You can achieve the same behavior by passing an Object which has smart defaults.But again it depends what your case at hand.

link|improve this answer
feedback

There are half a dozen or better issues such as this, eventually you arrive at the static factory pattern ... see the crypto api for that. Sort difficult to explain, but think of it this way: If you have a constructor, default or otherwise, the only way to propagate state beyond the curly braces is either to have a Boolean isValid; ( along with the null as default value v failed constructor ) or throw an exception which is never informative when getting it back from field users.

Code Correct be damned, I write thousand line constructors and do what I need. I find using isValid at object construction - in other words, two line constructors - but for some reason I am migrating to the static factory pattern. I just seems you can do a lot if you in a method call, there are still sync() issues but defaults can be 'substituted' better ( safer )

I think what we need to do here is address the issue of null as default value vis-a-vis something String one=new String(""); as a member variable, then doing a check for null before assigning string passed to the constructor.

Very remarkable the amount of raw, stratospheric computer science done in Java.

C++ and so on has vendor libs, yes. Java can outrun them on large scale servers due to it's massive toolbox. Study static initializer blocks, stay with us.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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