top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Pattern Matching in Scala?

+2 votes
247 views
What is Pattern Matching in Scala?
posted Aug 16, 2016 by Karthick.c

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Pattern matching is the second most widely used feature of Scala, after function values and closures. Scala provides great support for pattern matching, in processing the messages. A pattern match includes a sequence of alternatives, each starting with the keyword case.

answer Sep 8, 2016 by Joy Nelson
...