Answer the question
In order to leave comments, you need to log in
How to use lambda expression for 'multi-method' interfaces?
Good day.
There is a main() method within which the run() method is called:
public static void main(String args[]) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
new WorkTable().setVisible(true);
}
});
}
public static void main(String args[]) {
EventQueue.invokeLater(() -> {
new WorkTable().setVisible(true);
});
}
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