Where does java reference variable stored?

前端 未结 6 664
醉话见心
醉话见心 2020-12-06 02:29

How does Java\'s reference variable stored? Is that work similar to C pointer?

what I mean by reference variable is myDog in this code

Dog myDog = ne         


        
6条回答
  •  执笔经年
    2020-12-06 02:42

    In general local variables are stored on the stack. Instance variables are stored on the heap.

提交回复
热议问题