Is there a difference between:
public void main(String args[]) { ... }
and
public void main(String[] args) { ... }
I don't believe so, but I am wondering.
|
Is there a difference between:
and
I don't believe so, but I am wondering. |
||||
|
Semantically, they are identical. However, I'd recommend using the latter syntax ( Since A similar question addresses the |
|||
|
|
|
There's no difference, but putting the brackets after the type ( |
|||
|
|
|
Nope. There is no difference b/w the two. See
so just use the second style. |
|||
|
|
|
The method signature is the same so there is no difference. Its a public method, it returns nothing, the method name is "main" and the it takes a String array. |
|||
|
|
|
The difference between these is that when we try to call the main method manually from one class to another by using static syntax , we use "string[] s ". At that point we have to pass an array of string type as argument in main method. When we are using "String... s" then there is no need to pass any string array as an argument. It will run and it doesn't matter if you pass the array as an argument or not (if you don't explicitly pass it, it is passed by itself) ... hence proved///////// |
||||
|
|
argsis an array ofStringrather than an array ofargs– josh.trow May 13 '11 at 20:17