Returns the amount of memory currently being used by ImageJ.
()
| 1017 | |
| 1018 | /** Returns the amount of memory currently being used by ImageJ. */ |
| 1019 | public static long currentMemory() { |
| 1020 | long freeMem = Runtime.getRuntime().freeMemory(); |
| 1021 | long totMem = Runtime.getRuntime().totalMemory(); |
| 1022 | return totMem-freeMem; |
| 1023 | } |
| 1024 | |
| 1025 | /** Returns the maximum amount of memory available to ImageJ or |
| 1026 | zero if ImageJ is unable to determine this limit. */ |
no test coverage detected