File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Mock Exam Errata and the fly likes Confusion on code Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Professional Certification » Mock Exam Errata
Reply Bookmark "Confusion on code" Watch "Confusion on code" New topic
Author

Confusion on code

Sushanta Chakrabarty
Greenhorn

Joined: Dec 05, 2007
Posts: 4
public class DDg {

public static void main(String[]args){
fgh f = new fgh();
f.fgr(new Iface(){ public void ggg(){System.out.println("a");}});

}

}
interface Iface{
void ggg();

}
class fgh{
void fgr(Iface I){System.out.println("b");}
}

In the above mentioned program I think I should get "a" as output but I am getting "b". May anyone help?
HarrySingh
Greenhorn

Joined: Nov 29, 2007
Posts: 1
f.fgr(new Iface(){ public void ggg(){System.out.println("a");}});

You are calling fgr() method which takes instance of Iface which is an interface so you have to create an anonymous inner class inside the argument BUT you are never made a call ggg() in your code.
 
 
subject: Confusion on code
 
Threads others viewed
interface
declaring an array using an interface type
argument -defined Anonymous inner class
Interface as a parameter
where is the Object o1 come from?
WebSphere development made easy
without the weight of IBM tools
http://www.myeclipseide.com