速報APP / 工具 / Neo-JVM

Neo-JVM

價格:免費

更新日期:2019-01-05

檔案大小:63k

目前版本:0.5

版本需求:Android 4.0 以上版本

官方網站:mailto:neoexpert@gmail.com

Neo-JVM(圖1)-速報App

Simuliert eine JVM.

Zur Zeit funktioniert nur ein begrenzte Anzahl an op-codes. Dieses Programm ist OpenSource:

https://gitlab.com/neoexpert/jvm

Beispiel-Programm, das ausgeführt werden kann:

public class Main {

public static void main(String[] args) {

Neo-JVM(圖2)-速報App

fak(10);

}

public static int fak(int i){

if(i<=0)

return 1;

return i*fak(i-1);

}

}