-2

I am facing an issue using setSize() method in the below program.

Error : The method setSize(int,int) is not defined for the type frame.

When I see Java API, "Class Frame" has this Method inherited from class java.awt.Window. As i have instantiated the Frame class, this object should have setSize() method as Frame is derived class of Window. Why am I getting this error then? How can a derived class doesnt contain its superclass method?

public class AwtPrac{

  public static void main(String[] args) {
    Frame fm = new Frame("Java Programm");
    Button b= new Button ("Click Here");
    fm.add(b);
    fm.setVisible(true);
    fm.SetSize(300,300);
    fm.dispose();
  }
}

1 Answers1

0

Take this code

   import java.awt.Frame;

  public class AwtPrac  {

private static  void init(){
    Frame fm = new Frame("Java Programm");
   fm.setTitle("AwtPrac");
   fm.setSize(300,300);
    fm.setVisible(true);
}

public static void main(String[] args) {
    init();
}

}
Francesco Taioli
  • 2,687
  • 1
  • 19
  • 34
  • Why is my query not working?As i have instantiated the Frame class, this object should have setSize() method as Frame is derived class of Window. Why am I getting this error then? How can a derived class doesnt contain its superclass method? – Elisetty Narendra May 28 '16 at 17:47
  • you write : fm.SetSize() instead of fm.setSize(). The method start with the first letter to lower case... – Francesco Taioli May 28 '16 at 17:54
  • you could put the question resolved ? you have to press the arrow . thank you – Francesco Taioli May 28 '16 at 17:57