Possible Duplicate:
Java: how to call non static method from main method?
I am finding this a bit hard to implement.
I have a String[]
called name
which is declared globally
.
String[]name;
Now i want to access this variable from the main()
method. The main method is static
therefore how could i access it.
I tried Animal.name
but it didn't work.
How can i do this?