Java Runtime.maxMemory incorrect?

后端 未结 4 1858
北荒
北荒 2020-12-07 00:02

I ran the following method Runtime.getRuntime().maxMemory() and gave 85196800.

However, I then ran top from the command line and it showed

  PID U         


        
4条回答
  •  攒了一身酷
    2020-12-07 00:37

    From the documentation,

    maxMemory() - Returns the maximum amount of memory that the Java virtual machine will attempt to use.

    Top only shows the amount of (virtual) memory that the system has allocated to the process - you are asking Java how much it could attempt to use in the worst case.

    In general, querying the JVM and/or system for information on actual memory used is not reliable. For example, top's numbers may include memory allocated but not used or paged out. It can also include things like shared libraries, where a 10MB library may count for two processes' allocations but only have one physical copy in memory. (For example)

    What are you trying to do?

提交回复
热议问题