Home > Java Programming > Inner Classes > Questions and Answers
Q: |
class Foo { class Bar{ } } class Test { public static void main (String [] args) { Foo f = new Foo(); /* Line 10: Missing statement ? */ } } which statement, inserted at line 10, creates an instance of Bar? | ||||||||||
|
Comment on this Question | |
Name: | |
|