访问类类型

时间:2012-06-28 14:03:20

标签: xtend

我正在尝试将以下java代码段转换为Xtend,但我无法做到。我无法访问静态属性'class'。

public class SyncService{
  private static final String LOGT = SyncService.class.getSimpleName();
}

我尝试了以下方法,

class SyncService {
    val LOGT = SyncService.class.getSimpleName();
}
class SyncService {
    val LOGT = SyncService::class.getSimpleName();
}

1 个答案:

答案 0 :(得分:3)

根据documentation它的

SyncService.simpleName

或使用旧语法:

typeof(SyncService).simpleName