I kind of not big fan of Java because it manages its memory itself. Either ways I am looking for some pointers on internals of Java memory management and stuff.
Acumen
Lucid forums
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
I kind of not big fan of Java because it manages its memory itself. Either ways I am looking for some pointers on internals of Java memory management and stuff.
Acumen
Lucid forums
I know you can pass command-line arguments to the JVM. Try doing a google search on that. Other than that, I think the JVM has become open-source (or is in the process of becoming), so you can look at it. To do it in pure Java, I don't think it's possible.
The JVM has become really clever over the last couple of years and especially the garbage collector which is what frees up a lot of memory for you once objects become unreferenced.
What exactly is it you want to manage when it comes to Java memory?
Don't be fooled though, just because Java manages the memory through the JVM doesn't mean it will resolve memory leaks etc for you. Beware of the code you write.
// Json
Thanks for replies guy. So I don't have any specific problem, it was just out of interest I wanted to learn about it.
Acumen
Lucid forums
If you fancy a read here you go.
http://java.sun.com/j2se/reference/w...whitepaper.pdf
// Json