What is 'Application' in Scala or What is Scala Application? What is 'App' in Scala? What is the use of Scala’s App?
Answer Posted / Sushma
In Scala, `Application` and `App` are commonly used names for entry points of console applications. The `Application` trait provides a basic structure for command line arguments handling. When a Scala file named `App.scala` is run from the command line, it will execute the main method defined within that file, which should extend the Application trait.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers