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.

Check out the Scala certification blog!

Watch this Apache-Spark-Scala video

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:

Become a professional Apache Spark with this complete Scala and Apache spark Training Course!

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)
}
}

Go through our blog on File Handling in Scala for a detailed understanding of File concepts.

Course Schedule

Name Date Details
Big Data Course 23 Mar 2024(Sat-Sun) Weekend Batch
View Details
Big Data Course 30 Mar 2024(Sat-Sun) Weekend Batch
View Details
Big Data Course 06 Apr 2024(Sat-Sun) Weekend Batch
View Details