If i compile the above code at line 8 invalid method declaration;ret run type required,
How to solve it?
How to solve it?
Code:
import java.awt.Frame;
import java.awt.Label;
public class Howdywindow extends Frame{
public static void main(String arg[])
{
new HowdyWindow();
}
HowdyWindow()
{
Label label;
label = new Label("Howdy!");
add(label);
pack();
show();
}
}
Comment