Packages

t

scala

App

trait App extends DelayedInit

The App trait can be used to quickly turn objects into executable programs. Here is an example:

object Main extends App {
  Console.println("Hello World: " + (args mkString ", "))
}

Here, object Main inherits the main method of App.

args returns the current command line arguments as an array.

Caveats

It should be noted that this trait is implemented using the DelayedInit functionality, which means that fields of the object will not have been initialized before the main method has been executed.

It should also be noted that the main method should not be overridden: the whole class body becomes the “main method”.

Future versions of this trait will no longer extend DelayedInit.

Source
App.scala
Version

2.1, 15/02/2011

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. App
  2. DelayedInit
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. val executionStart: Long

    The time when the execution of this program started, in milliseconds since 1 January 1970 UTC.

    The time when the execution of this program started, in milliseconds since 1 January 1970 UTC.

    Annotations
    @deprecatedOverriding( message = ... , since = "2.11.0" )
  2. def main(args: Array[String]): Unit

    The main method.

    The main method. This stores all arguments so that they can be retrieved with args and then executes all initialization code segments in the order in which they were passed to delayedInit.

    args

    the arguments passed to the main method

    Annotations
    @deprecatedOverriding( message = "main should not be overridden" , since = "2.11.0" )

Deprecated Value Members

  1. def delayedInit(body: ⇒ Unit): Unit

    The init hook.

    The init hook. This saves all initialization code for execution within main. This method is normally never called directly from user code. Instead it is called as compiler-generated code for those classes and objects (but not traits) that inherit from the DelayedInit trait and that do not themselves define a delayedInit method.

    body

    the initialization code to be stored for later execution

    Definition Classes
    AppDelayedInit
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) the delayedInit mechanism will disappear