Memory scope for static methods in java

I studied that static data members of a class get memory when the class is loaded in the class information area (CIA) of the class scope, but I couldn't find out what the memory area is for the static methods. is this the scope of a method in a class? but your answer is old also says that static variables also get memory on the heap, but I read it in full proof that memory is CIA allocated and it says that all methods (static and instance) get memory on the heap, but the instance member function gets memory in the method scope of the class area.so according to you, what are the other memory areas for (method scope, stack, CIA, etc.)?

+3


source to share





All Articles