Answer the question
In order to leave comments, you need to log in
Java program not starting (Error: Could not find or load main class)?
The simplest program from the book "Learning Java, 2nd edition" by K. Sierra does not start.
I do everything according to the instructions.
import java.awt.*;
import java.awt.event.*;
class Party {
public void buildInvite() {
Frame f = new Frame();
Label l = new Label("Вечеринка у Децла дома");
Button b = new Button("Ваша ставка");
Button c = new Button("Сбросить");
Panel p = new Panel();
p.add(l);
} //еще код
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question