Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Beginning Java
Search Coderanch
Advance search
Google search
Register / Login
Help coderanch get a
new server
by contributing to the
fundraiser
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Ron McLeod
Paul Clapham
Devaka Cooray
Liutauras Vilda
Sheriffs:
Jeanne Boyarsky
paul wheaton
Henry Wong
Saloon Keepers:
Stephan van Hulst
Tim Holloway
Tim Moores
Carey Brown
Mikalai Zaikin
Bartenders:
Lou Hamers
Piet Souris
Frits Walraven
Forum:
Beginning Java
Subtle Difference...
Vipul Tangri
Greenhorn
Posts: 11
posted 23 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Is there is a subtle difference between the standard signature of main method...public static void main(
String
[] args) and (String args[]) or are they same?
Anonymous
Ranch Hand
Posts: 18944
posted 23 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Java
provides for the definition of an array to be either way, so there is no difference between
(String[] args)
and
(String args[]).
Don't get me started about those stupid
light bulbs
.
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Null or not Null?
difference between types of main method
Beginner
(String[] args) vs. (String args[])
Super dumb newbie question...String[] args vs. String args[]
More...