Blackberry Memory Management

I want to know how to manage memory in BlackBerry to simultaneously run different applications and with which an internal file or program or something else is executed.

+3
source share
1 answer

Memory management

All about Java Virtual Machine , which is part of the OS:

The BlackBerry® Java® virtual machine manages memory usage on your BlackBerry device. The BlackBerry JVM allocates memory, collects garbage, and automatically changes data between SRAM and flash memory. The BlackBerry JVM must also provide available memory between the BlackBerry device application and the BlackBerry® Java application. Memory capabilities represent the total amount of available memory that is larger than the available working memory when all applications and related application data exist on BlackBerry.

BlackBerry Java Development Environment - Fundamentals Guide - Memory Management

See also
SO - Using BlackBerry Memory
SO - Stack Size on BlackBerry?

Memory usage statistics

BlackBerry IDE BB Eclipse
A50

BB API :
net.rim.device.api.system.Memory
net.rim.device.api.system.MemoryStats

.
BlackBerry - Blackberry

+6

Source: https://habr.com/ru/post/1715260/


All Articles