i have a class that extends applet
class Class1 extends Applet{
init()/start()/stop()/paint
}
and i want to make another class Class2
class Class2{
public static void main(String[] args) {
Class1 c=new Class1();
}
}
nothing happens
Printable View
i have a class that extends applet
class Class1 extends Applet{
init()/start()/stop()/paint
}
and i want to make another class Class2
class Class2{
public static void main(String[] args) {
Class1 c=new Class1();
}
}
nothing happens