Skip to content

Instantly share code, notes, and snippets.

@civic
Last active December 24, 2015 05:39
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 civic/6751695 to your computer and use it in GitHub Desktop.
Save civic/6751695 to your computer and use it in GitHub Desktop.
traitがどういうJavaバイトコードになるのか
trait Weapon  {
  val strength: Int
}

scalac後javapで表示

$ javap -c Weapon
Compiled from "test.scala"
public interface Weapon {
  public abstract int strength();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment