Skip to content

Instantly share code, notes, and snippets.

@kmizu
Created December 7, 2011 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmizu/1443062 to your computer and use it in GitHub Desktop.
Save kmizu/1443062 to your computer and use it in GitHub Desktop.
Access Java's static field from Scala
public class A {
public static int si = 2;
}
> javac A.java
> scala UseA.scala
2
10
println(A.si)
A.si = 10
println(A.si)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment