+ 1
Can someone tell me d basic of this line...
public static void main(String args[]) tell me all d words what does it mean in program n what does these words do????
4 Antworten
+ 2
public - allows anything to access it
static - there's no need to create an object to call it
void - tells the compiler that the function doesn't return anything
main(String args[]) - main is the function name, it takes in an array (list) of Strings (text) argument/parameter called args
0
Inside the brackets there are something called parameters or arguments (can be blank). When you call a function you can pass values to these parameters if the function allows it (in this case main allows it). Strings are text and the [] means it is an array (list), they can also be before the name like... String[] args. args is just the name given to access this array.
0
thnxxxx TurtleShell
- 1
can u again explain me String args that we use inside d bracket TurtleShell