alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (sig.scala)

This example Scala source code file (sig.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

a, a, b, b, outer, outer, x, x

The Scala sig.scala source code

package test

/* Tests correct generation of Java signatures. The local method 'bar' should
 * not get a generic signature, as it may refer to type parameters of the enclosing 
 * method, and the JVM does not know about nested methods.
 */
class Outer {
  def foo[A, B](x: A, y: B) = {
    def bar[X](x1: A, y1: B, z1: X) = z1
    bar(x, y, 10)
  }
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala sig.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.