Fahad/CodeSamples/GenericClasses.scala
author Chengsong
Wed, 31 Aug 2022 23:57:42 +0100
changeset 590 988e92a70704
parent 44 a751aa1ee4f7
permissions -rw-r--r--
more chap5 and chap6 bsimp_idem

package Main

class Stack[T] {
  var elems: List[T] = Nil
  def push(x: T) { elems = x :: elems }
  def top: T = elems.head
  def pop() { elems = elems.tail }
}

object GenericsTest extends App{
  val stack = new Stack[Int]
  stack.push(1)
  stack.push('a')
  println(stack.top)
  stack.pop()
  println(stack.top)
}