| Author |
creation of object for a class in static method
|
Chandra Bairi
Ranch Hand
Joined: Sep 12, 2003
Posts: 152
|
|
class Ex2 { public static void main(int args) { class Hii{ } } public static void main(String[] args) { } } How can we create an object for a class in static method and the method has parameters to pass? any help please
|
Thanks,
Shekar
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24050
|
|
Hi, Is your question "How can I create an instance of "Hii" from code in main(String[]) ? The answer is, simply enough, that you can't. Classes local to a method can't be constructed in any code outside that method; whether there are parameters, or whether the methods are static, have no bearing on the question.
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: creation of object for a class in static method
|
|
|