在scala中将当前类作为参数传递

时间:2011-02-02 13:35:18

标签: scala

如何将当前类作为参数传递?在java中我们做:

mymethod (this.class)  

mymethod (MyClass.class)

如何将scala当前类传递给此方法?

1 个答案:

答案 0 :(得分:13)

this.getClassclassOf[MyClass]