Reputation: 141
a Scala class inherits JFrame class
class App extends JFrame {
public App {
//how to call this super method
super("Hello world");
}
}
Upvotes: 1
Views: 105
Reputation: 1828
The correct syntax is:
class App extends JFrame("Hello world") {
// your code
}
Upvotes: 1