Where are methods stored in memory?

后端 未结 2 1059
滥情空心
滥情空心 2020-12-04 13:18

I learned that class fields are stored in the heap, but where are methods stored? In the heap or somewhere else? are they inline?

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-04 13:54

    Class methods are stored together with all code in a dedicated segment of program memory meant specifically for storing code. Each method's code is stored once.

提交回复
热议问题