Basically something like
public void jumpToRoom(String roomName = Rooms.DEFAULT_ROOM)
would be convenient.
Many languages nowadays seem to support it (Ruby, PHP, even C#).
What is Java's reasoning for not allowing it?
Basically something like
would be convenient. Many languages nowadays seem to support it (Ruby, PHP, even C#). What is Java's reasoning for not allowing it? |
|||||||||
|
As it currently stands, this question is not a good fit for our Q&A; format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.If this question can be reworded to fit the rules in the help center, please edit the question.
One good reason is to simplify overloading. For example if void foo(String a); and void foo(String a,String b default: "bar") both exist what does foo("bar") call? |
|||||||||||||
|