AnyRef

AnyRef represents reference classes. All non-value types are defined as reference types.

  1. In Scala, AnyRef is the root class of all reference types and child of “Any” class in the Scala type system.
  2. These are types that refer to objects rather than directly holding values.
  3. Every custom type in Scala belongs to AnyRef category.
  4. User-defined classes define reference types by default; i.e. they always (indirectly) subclass scala.
  5. AnyRef. scala.AnyRef in java programming corresponds to java.lang.Object.

Example:

Scala




// Scala program of Scala Type hierarchy
// Using AnyRef
 
// Creating object
object Geeks
{
 
    // Main method
    def main(args: Array[String])
    {
        val list: List[AnyRef] = List(
        "GFG", "w3wiki"
            )
 
        list.foreach(element => println(element))
    }
}


Output

GFG
w3wiki


Scala Type Hierarchy

There are no primitive types in Scala(unlike Java). All data types in Scala are objects that have methods to operate on their data. All of Scala’s types exist as part of a type hierarchy. Every class that we define in Scala will also belong to this hierarchy automatically.

Any

Any is the superclass of all classes, also called the top class. It defines certain universal methods such as equals, hashCode, and toString. Any has two direct subclasses:

  1. AnyVal
  2. AnyRef

Example:

Scala




// Scala program of Scala Type hierarchy
 
// Creating object
object Geeks
{
 
    // Main method
    def main(args: Array[String])
    {
        val list: List[Any] = List(
                false,
                66677,
                732,
                'a',
                "abs"
                    )
 
        list.foreach(element => println(element))
    }
}


Output

false
66677
732
a
abs


Similar Reads

AnyVal

...

Exception

AnyVal represents value classes. All value classes are predefined; they correspond to the primitive types of Java-like languages....

AnyRef

...

Nothing and Null

Scala’s value types are much like Java’s primitive types except the Unit class....