java - Could you technically call the string[] anything in the main method? -
the header main
method is
public static void main (string[] args)
could technically replace "args" want? also, why parameter array?
args
name argument in method. can rename whatever want. jvm doesn't need know argument named; type, string[]
, important.
dont break start point of app
static void main(string[] whateveryouneed)
Comments
Post a Comment