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

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.

share|improve this question
1  
As you said, coding style. I know many people prefer the second because it seems clearer that args is an array of String rather than an array of args – josh.trow May 13 '11 at 20:17

6 Answers

up vote 9 down vote accepted

Semantically, they are identical. However, I'd recommend using the latter syntax (String[] args) when declaring arrays. The former syntax is there mainly for compatibility with C syntax.

Since String[], as a whole, is the type of the object in Java, it's more consistent and clear not to split it up.

A similar question addresses the [] after method argument list.

share|improve this answer

There's no difference, but putting the brackets after the type (String[]) is the more common practice in Java.

share|improve this answer

No

They are just two style of writting

share|improve this answer

Nope. There is no difference b/w the two.

See Declaring a Variable to Refer to an Array section in this doc. From that doc

float anArrayOfFloats[]; // this form is discouraged

so just use the second style.

share|improve this answer

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.

share|improve this answer

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/////////

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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