qbasicking
Programmer
I have been unable to find anything about heap memory in my JAVA book and I need to be able to create a class with the non-standard option of having 256MB of heap memory. Any help would be appreciated.
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.
java -Xmx256m -classpath . some.package.MyClass
java -Xms256m -Xmx256m -classpath . some.package.MyClass