由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - java memory management?
相关主题
求教有没有好的查memory leak的工具?怎么在application实现delay?
问一个GC的问题How to know if a file is open or not?
[转载] 问一个关于速度的问题An experiment with JVM Garbage Collection Schemes
out of memoryStack Frame of your JVM implementation
Re: Out of memory, Java heap space 的问题怎么解决? (转载)The shape of JVM stack frame
问个系统问题 (转载)Top Ten Errors Java Programmers Make(10)
帮我了解一下64bit JVMIs this a Bug or not?
Where I can find comparison of JVMsAnswer to "Is this a Bug or not? "
相关话题的讨论汇总
话题: memory话题: java话题: management话题: leaks话题: article
进入Java版参与讨论
1 (共1页)
r*******w
发帖数: 121
1
anyone can recommend some articles/books which explains in deeper details how
the java memory management works? i saw from the web that memory leak is still
possible with java...and there are two types of memory leaks...but the article
does not elaborate...i strongly suspect i am having memory leaks...and
therefore would like to know more~
thanks~
c*****s
发帖数: 214
2
内存泄漏是JVM的问题,你无法在用程序避免
你可以试着启动你的程序是加上java 的内存参数给程序更多的内存
java -Xmx40m com.mycompnay.myapp.Main ...

how
still
article

【在 r*******w 的大作中提到】
: anyone can recommend some articles/books which explains in deeper details how
: the java memory management works? i saw from the web that memory leak is still
: possible with java...and there are two types of memory leaks...but the article
: does not elaborate...i strongly suspect i am having memory leaks...and
: therefore would like to know more~
: thanks~

r*******w
发帖数: 121
3
went for the max already

【在 c*****s 的大作中提到】
: 内存泄漏是JVM的问题,你无法在用程序避免
: 你可以试着启动你的程序是加上java 的内存参数给程序更多的内存
: java -Xmx40m com.mycompnay.myapp.Main ...
:
: how
: still
: article

1 (共1页)
进入Java版参与讨论
相关主题
Answer to "Is this a Bug or not? "Re: Out of memory, Java heap space 的问题怎么解决? (转载)
Answer 2 to "Is this a Bug or not? "问个系统问题 (转载)
Java's performance myth帮我了解一下64bit JVM
JVMWhere I can find comparison of JVMs
求教有没有好的查memory leak的工具?怎么在application实现delay?
问一个GC的问题How to know if a file is open or not?
[转载] 问一个关于速度的问题An experiment with JVM Garbage Collection Schemes
out of memoryStack Frame of your JVM implementation
相关话题的讨论汇总
话题: memory话题: java话题: management话题: leaks话题: article