0
可能重複:
Automated Java to Scala source code conversion?有沒有辦法從一個.java文件生成Scala代碼
由於Scala語言和Java具有的所有功能,理論上應該是可能的生成從Java源代碼文件翻譯的Scala代碼。有什麼工具可以做這種翻譯嗎?
例如,在Java下面的代碼:
public class MyClass {
String hello;
public MyClass(String hello){
this.hello = hello;
}
public void doSomething() {
Sysout.println(hello);
}
}
可以自動翻譯成:
class MyClass(hello: String) {
def doSomething() {
println(hello);
}
}