Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6951863
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:16:31+00:00 2026-05-27T14:16:31+00:00

I am reading the Scala in Examples book and almost every example there has

  • 0

I am reading the Scala in Examples book and almost every example there has the following construction:

abstract class Stack[A] {
  def push(x: A): Stack[A] = new NonEmptyStack[A](x, this)
  def isEmpty: Boolean
  def top: A
  def pop: Stack[A]
}
class EmptyStack[A] extends Stack[A] {
  def isEmpty = true
  def top = error("EmptyStack.top")
  def pop = error("EmptyStack.pop")
}
class NonEmptyStack[A](elem: A, rest: Stack[A]) extends Stack[A] {
  def isEmpty = false
  def top = elem
  def pop = rest
}

And I have the following two interconnected questions:
1) Is it a common Scala practice to represent empty and non-empty elements as separate classes? If yes then why?
2) Why do the children both implement the same dumb ethod ‘isEmpty’ when it is possible and, to me, more sensible to do this in the parent class?

I would like to know the deepest of the philosophy involved here.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:16:32+00:00Added an answer on May 27, 2026 at 2:16 pm

    1) Yes it is common to have separate classes for empty and non-empty containers, this is generally called an algebraic data structure, however it is usually not so apparent. For example, Scala’s List has two classes, Nil to represent an empty list, and :: that contains one element and another list. So

    List(1,2,3)
    

    while usually referred to by the List[T] trait, is really an instance of :: [B] (hd: B, tl: List[B]) that looks like:

    ::(1, ::(2, ::(3, Nil)))
    

    2) Each class must implement the isEmpty method becuase if you notice, the value is different in each child class. It simply saves some computation to figure out whether an instance of Stack is empty or not, since each child type already knows this at compile-time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just finished reading a book on scala. What strikes me is that every
I was reading A Tour of Scala: Abstract Types . When is it better
From reading parts of the Programming in Scala book, I realize that Scala can
I'm reading the Programming in Scala book by the Scala Creator and I'm a
I've recently wanted to give Scala a try and I started by reading book
I am reading Programming in Scala, and I don't understand the following sentence (pdf
Are there public instance variables anymore in Scala? I'm reading Programming in Scala ,
I'm reading Programming Scala (O'reilly) It's a really good book, and is easy to
I have been reading about Scala for a while and even wrote some small
I've been reading a lot about how Scala and Erlang does lightweight threads and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.