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

Related

  • Memory Optimization and Utilization in Java 25 LTS: Practical Best Practices
  • Stateful AI: Streaming Long-Term Agent Memory With Amazon Kinesis
  • Optimizing Java Applications for Arm64 in the Cloud
  • Immutable Objects Using Record in Java

Trending

  • 7 Technology Waves I’ve Seen in 30 Years of Software — Will AI Be the Next Real Transformation?
  • How to Submit a Post to DZone
  • Implementing Secure API Gateways for Microservices Architecture
  • Implementing Observability in Distributed Systems Using OpenTelemetry
  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.3K 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 Optimization and Utilization in Java 25 LTS: Practical Best Practices
  • Stateful AI: Streaming Long-Term Agent Memory With Amazon Kinesis
  • Optimizing Java Applications for Arm64 in the Cloud
  • Immutable Objects Using Record in Java

Partner Resources

×

Comments

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

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

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 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook