Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public Test3() {
}
private void doIt() {
long totalMemory = Runtime.getRuntime().totalMemory();
long freeMemory = Runtime.getRuntime().freeMemory();
long usedMemory = totalMemory - freeMemory;
System.out.println("TotalMemory = " + totalMemory);
System.out.println("FreeMemory = " + freeMemory);
System.out.println("Used Memory = " + usedMemory);
}
public static void main(String[] args) {
Test3 example = new Test3();
example.doIt();
}
}