Skip to content

Instantly share code, notes, and snippets.

@noahlt
Created October 23, 2011 07:32
Show Gist options
  • Save noahlt/1306999 to your computer and use it in GitHub Desktop.
Save noahlt/1306999 to your computer and use it in GitHub Desktop.
How do I pass a class in Scala?

In Java:

public class Foo { }

Foo.class

In Scala:

class Foo { }

classOf[Foo]
["scala","java","class"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment