Nov 30 2008 01:28 PM 2956 2 Supplying Arguments to Main Method murali_06 What is the meaning of supplying string[] args to main method? dugulam Profile Answers by dugulam Questions by dugulam Dec 6th, 2008 public static void main(String args[]) This array of Strings is the mechanism through which the runtime system passes information to your application. Each String in the array is called a command ... Answer Question Select Best Answer
Nov 30 2008 01:28 PM 2956 2 Supplying Arguments to Main Method murali_06 What is the meaning of supplying string[] args to main method? dugulam Profile Answers by dugulam Questions by dugulam Dec 6th, 2008 public static void main(String args[]) This array of Strings is the mechanism through which the runtime system passes information to your application. Each String in the array is called a command ... Answer Question Select Best Answer
dugulam Profile Answers by dugulam Questions by dugulam Dec 6th, 2008 public static void main(String args[]) This array of Strings is the mechanism through which the runtime system passes information to your application. Each String in the array is called a command ...