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 6892041
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:29:06+00:00 2026-05-27T06:29:06+00:00

Possible Duplicate: Java/C# method representation in memory I was wondering if i have an

  • 0

Possible Duplicate:
Java/C# method representation in memory

I was wondering if i have an object in java, how are it’s instance methods stored? Does an object have a pointer to it’s instance methods?

Example:

public class MyObject {
 private int x;
 private int y;
 [..]
}

If i plan keeping a lot (A big tree of objects for example) of these MyObjects in memory, will it make a significant difference in memory terms if apart from a getter for x and for y i define an instance method calculating the sum?

I’m trying to sort out wether i should add more instance methods or doing the calculations in another class using the getters and setters.

  • 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-05-27T06:29:06+00:00Added an answer on May 27, 2026 at 6:29 am

    The object needs memory for its attributes (NOTE: for object, the attribute stored is a pointer to the real object, which lies elsewhere in memory). No additional memory is needed for methods (code) as they are stored with the class.

    IE:

    public class MyClass1 {
      private int myNumber;
    }
    

    and

    public class MyClass2 {
      private int myNumber;
      public int MyMethod1() {
      }
      public int MyMethod2() {
      }
      public int MyMethod3() {
      }
      ....
      public int MyMethod1000() {
      }
    }
    

    use the same memory per instance.

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

Sidebar

Related Questions

Possible Duplicate: Java - Regex problem I have list of URLs of types: http://www.example.com/pk/etc
Possible Duplicate: Java - why no return type based method overloading? The compiler does
Possible Duplicate: Measure execution time for a Java method I have an application by
Possible Duplicate: General strategy to resolve Java memory leak? I have a standalone program
Possible Duplicate: Why is the finalize() method in java.lang.Object “protected”? The finalize method is
Possible Duplicate: How do synchronized static methods work in Java? I was wondering what
Possible Duplicate: Java - Convert String to enum I have a method that uses
Possible Duplicate: non static method cannot be referenced from static context hey i have
Possible Duplicate: Calling a method named “string” at runtime in Java and C I
Possible Duplicate: Why would one declare a Java interface method as abstract? The following

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.