Home » Java Programming » Inner Classes

Which one create an anonymous inner class from within class Bar? class Boo { Boo(String s) { } Boo() { } } class Bar extends Boo { Bar() { } Bar(String s) {super(s);} void zoo() { // insert code here } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!