aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes implementation for static and non-static methods stored in memory Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "implementation for static and non-static methods stored in memory" Watch "implementation for static and non-static methods stored in memory" New topic
Author

implementation for static and non-static methods stored in memory

Naresh Chaurasia
Ranch Hand

Joined: May 18, 2005
Posts: 309
In this program i have created two objects s1 and s2 of class sample. The display function(which is member function of
class sample) has common implementation which is shared by s1 and s2. Where is the implementation for the dispaly function
stored? Where is the implementation for static and non-static methods stored in memory?

class sample
{
void display()
{
System.out.println("hello");
}
}

class MainClass
{
public static void main(String str[])
{
sample s1 = new sample();
sample s2 = new sample();
s1.display();
s2.display();
}
}


SCJP 1.4, SCWCD1.4, OCA(1Z0-007)
Megs Maquito
Ranch Hand

Joined: May 18, 2005
Posts: 84
methods are stored in the stack. Objects and instance variables are in the heap.


I'm a Hood Ornament
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: implementation for static and non-static methods stored in memory
 
Similar Threads
polymorphism question
Doubt in String class
Inheritence
Strings
Why doesn't the subclass variable hide it?