DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

SBOMs are essential to circumventing software supply chain attacks, and they provide visibility into various software components.

Related

  • Memory Leak Due To Mutable Keys in Java Collections
  • Advanced Java Garbage Collection Concepts: Weak References, Finalization, and Memory Leaks
  • Memory Leak Due to Uncleared ThreadLocal Variables
  • Analyzing “java.lang.OutOfMemoryError: Failed to create a thread” Error

Trending

  • Contract-Driven ML: The Missing Link to Trustworthy Machine Learning
  • Dashboards Are Dead Weight Without Context: Why BI Needs More Than Visuals
  • Decoding the Secret Language of LLM Tokenizers
  • Tracing Stratoshark’s Roots: From Packet Capture to System Call Analysis
  1. DZone
  2. Data Engineering
  3. Data
  4. What Does a Java Array Look Like in Memory?

What Does a Java Array Look Like in Memory?

By 
Ryan Wang user avatar
Ryan Wang
·
Apr. 19, 13 · Interview
Likes (1)
Comment
Save
Tweet
Share
31.0K Views

Join the DZone community and get the full member experience.

Join For Free

arrays in java store one of two things: either primitive values (int, char, …) or references (a.k.a pointers).

when an object is creating by using “new”, memory is allocated on the heap and a reference is returned. this is also true for arrays.

1. single-dimension array

int arr[] = new int[3];


the int[] arr is just the reference to the array of 3 integer. if you create an array with 10 integer, it is the same – an array is allocated and a reference is returned.

one-dimension-array-in-java





2. two-dimensional array

how about 2-dimensional array? actually, we can only have one dimensional arrays in java. 2d arrays are basically just one dimensional arrays of one dimensional arrays.

int[ ][ ] arr = new int[3][ ];
arr[0] = new int[3];
arr[1] = new int[5];
arr[2] = new int[4];

array-in-memory-java












multi-dimensional arrays use the name rules.

3. where are they located in memory?

from the above, there are arrays and reference variables in memory. as we know that jvm runtime data areas include heap, jvm stack, and others. for a simple example as follows, let’s see where the array and its reference are stored.

class a {
	int x;
	int y;
}
 
...
 
public void m1() {
	int i = 0;
	m2();
}
 
public void m2() {
	a a = new a();
}
 
...
  1. when m1 is invoked, a new frame (frame-1) is pushed into the stack, and local variable i is also created in frame-1.
  2. when m2 is invoked inside of m1, another new frame (frame-2) is pushed into the stack. in m2, an object of class a is created in the heap and reference variable is put in frame-2. now, at this point, the stack and heap looks like the following:

java-array-in-memory

arrays are treated the same way like objects, so how array locates in memory is straight-forward.

Data structure Memory (storage engine) Java (programming language)

Published at DZone with permission of Ryan Wang. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Memory Leak Due To Mutable Keys in Java Collections
  • Advanced Java Garbage Collection Concepts: Weak References, Finalization, and Memory Leaks
  • Memory Leak Due to Uncleared ThreadLocal Variables
  • Analyzing “java.lang.OutOfMemoryError: Failed to create a thread” Error

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • [email protected]

Let's be friends: