• Articles
  • Tutorials
  • Interview Questions

Scala Traits - A Comprehensive Guide

What are Scala Traits?

Traits are abstract classes that are meant to be added to some other class. A trait adds some methods or fields to an unknown parent class. It encapsulates field and method definitions which can be reused by adding them into classes. Unlike class inheritance in which each class must inherit from just one superclass whereas a class can mix in any number of traits. A trait defines the object types by specifying the signature of the supported methods.

Watch this Apache-Spark-Scala video

Video Thumbnail

e.g.

trait IntegerSet {
def incl(x: Int): IntSet
def contains(x: Int): Boolean
}
class EmptySet extends IntegerSet {
def contains(x: Int): Boolean = false
def incl(x: Int): IntSet = new NonEmptySet(x, new EmptySet, new EmptySet)
}

Certification in Bigdata Analytics

One trait can also extend another trait like as follows:

e.g.

trait Almirah {
def canOpen(p: Person) : Boolean =
return true
def canPass(p: Person) : Boolean =
return true
}
trait Locked extends Almirah {
override def canOpen(p: Person): Boolean = {
if (!p.hasItem(theKey)) {
println("You don't have the Key")
return false
}
println("Using key...")
return super.canOpen(p)
}
}

Course Schedule

Name Date Details
Big Data Course 30 Nov 2024(Sat-Sun) Weekend Batch View Details
07 Dec 2024(Sat-Sun) Weekend Batch
14 Dec 2024(Sat-Sun) Weekend Batch

About the Author

Technical Research Analyst - Big Data Engineering

Abhijit is a Technical Research Analyst specialising in Big Data and Azure Data Engineering. He has 4+ years of experience in the Big data domain and provides consultancy services to several Fortune 500 companies. His expertise includes breaking down highly technical concepts into easy-to-understand content.