java - Is it possible to customize JVM architecture for changing main() method name? -
can change name of main() method using customization of java virtual machine architecture?
no not possible configuration. method name , signature defined @ language level. see this section java language specification:
the method
main
must declaredpublic
,static
, ,void
. must specify formal parameter (§8.4.1) declared type array ofstring
.
Comments
Post a Comment