Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8914427
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T04:42:57+00:00 2026-06-15T04:42:57+00:00

Possible Duplicate: In Java, what is the best way to determine the size of

  • 0

Possible Duplicate:
In Java, what is the best way to determine the size of an object?

I found this piece of code on the net:

static Runtime runtime = Runtime.getRuntime();
...
long start, end;
Object obj;
runtime.gc();
start = runtime.freememory();
obj = new Object(); // Or whatever you want to look at
end =  runtime.freememory();
System.out.println("That took " + (start-end) + " 
bytes.");

But it is not very reliable, any idea on how to do it better?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T04:42:59+00:00Added an answer on June 15, 2026 at 4:42 am

    The JVM allocates memory in chunks so it can be performed across threads concurrently. This called the Thread-Local Allocation Buffer.

    TLAB – Thread-local allocation buffer. Used to allocate heap space quickly without synchronization. Compiled code has a “fast path” of a few instructions which tries to bump a high-water mark in the current thread’s TLAB, successfully allocating an object if the bumped mark falls before a TLAB-specific limit address.

    If you turn this off with -XX:-UseTLAB you will get more accurate memory usage information.

    public static void main(String... args) {
        for (int i = 0; i < 10; i++) {
            long used1 = memoryUsed();
            new Object();
            long used2 = memoryUsed();
            System.out.println(used2 - used1);
        }
    }
    
    public static long memoryUsed() {
        return Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory();
    }
    

    prints with default options

    0
    0
    0
    0
    0
    0
    0
    0
    0
    0

    with -XX:-UseTLAB

    16
    16
    16
    16
    16
    16
    16
    16
    16
    16

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: In Java, what is the best way to determine the size of
Possible Duplicate: In Java, what is the best way to determine the size of
Possible Duplicate: In Java, what is the best way to determine the size of
Possible Duplicate: What is the best way to convert a java object to xml
Possible Duplicates: In Java, what is the best way to determine the size of
Possible Duplicates: sizeof java object In Java, what is the best way to determine
Possible Duplicate: Java: Global Exception Handler I thought of something like this: public static
Possible Duplicate: Best way to iterate through a directory in java? I want to
Possible Duplicate: Efficient way to implement singleton pattern in Java I was reading this
Possible Duplicate: Java: Detecting client disconnects from server side What is the best way

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.