Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
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
2  
No. However, the Builder pattern can help. – Dave Jarvis May 27 '10 at 2:58

10 Answers

up vote 155 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.

share|improve this answer

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.

share|improve this answer
6  
I gained a huge bit of insight thanks to this post.. Really thanks – baash05 Oct 4 '11 at 12:45
3  
Finally e great less-than-2-pages example of the Builder pattern. – nevvermind Nov 8 '12 at 21:38
1  
Im curious though, why do we need a builder class when using the builder pattern. I was thinking of Student s1 = new Student().name("Spicolo").age(16).motto("Aloha, Mr Hand); – ivanceras Feb 14 at 8:32
4  
@ivanceras: It's relevant when classes have required fields, and you don't want to be able to instantiate those classes in an invalid state. So if you just said Student s1 = new Student().age(16); then that would leave you with a Student without a name, which might be bad. If it's not bad, then your solution is fine. – Eli Courtwright Feb 14 at 18:33
2  
@ivanceras: another reason is you might want your class to be immutable after construction, so you wouldn't want methods in it that change its values. – Jules Feb 27 at 16:02

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.

share|improve this answer
4  
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
3  
that's clever but a bit messy compared to the C++ version – Someone Somewhere Nov 4 '11 at 18:27
2  
Java definitely needs optional defaulted parameters as C# and others allow... the syntax is obvious and I presume they can implement this fairly simply even by just compiling all possible combinations... I cannot imagine why they haven't added it to the language yet! – joe larson Feb 23 '12 at 23:31

Sadly, no.

share|improve this answer
8  
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
8  
@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
2  
@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

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)  {}
share|improve this answer
1  
or, he has add this feature to java...hmm, I like the way it sounds :P – iamcreasy Oct 13 '11 at 7:41
5  
Bring whole new language to get one not so common feature? – om-nom-nom Apr 3 '12 at 13:59
1  
@om-nom-nom: Java should never existed. Saying that a feature is not used is equivalent that nobody needs it is saying that Java was not popular before it was invented means that Gosling should not start designing it. – Val Jun 15 '12 at 15:17
3  
@Val just saying that this is like shooting birds with cannons – om-nom-nom Jun 15 '12 at 15:22

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

share|improve this answer
7  
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

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

share|improve this answer

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.

share|improve this answer

It is not supported but there are several options like using parameter object pattern with some syntax sugar:

public class Foo() {
    private static class ParameterObject {
        int param1 = 1;
        String param2 = "";
    }

    public static void main(String[] args) {
        new Foo().myMethod(new ParameterObject() {{ param1 = 10; param2 = "bar";}});
    }

    private void myMethod(ParameterObject po) {
    }
}

In this sample we construct ParameterObject with default values and override them in class instance initialization section { param1 = 10; param2 = "bar";}

share|improve this answer

I might be stating the obvious here but why not simply implement the "default" parameter yourself?

public class Foo() {
        public void func(String s){
                func(s, true);
        }
        public void func(String s, boolean b){
                //your code here
        }
}

for the default you would ether use

func("my string");

and if you wouldn't like to use the default, you would use

func("my string", false);

share|improve this answer
2  
The poster asked if this (rather ugly) pattern can be avoided ... ;-) In more modern languages (like c#, Scala) you don't need this extra overloads which only creates more lines of code. Up to some point you can use varargs in the meantime (static int max( int... array ) { }), but they are only a very ugly workaround. – Offler Feb 18 at 14:10

protected by Community Apr 10 at 11:04

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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