一个对象可以存储在堆栈而不是堆上吗?
Can an object be stored on the stack instead of the heap?
Yes,an object can be stored on the stack. If you create an object inside a function without using the “new” operator then this will create and store the object on the stack,and not on the heap. Suppose we have a C++ class called Member,for which we want to create an object. We also have a function called somefunction( ). Here is what the code would look like:
他们建议对象可以存储在堆中.这是令人困惑的.
我以为,
> Java中的所有对象都存储在堆上.
无论是由…创建
一个.新关键字
湾使用Class.forName().
C.使用clone().
天.使用newInstance()方法
即使用对象反序列化
>方法,线程和变量都是堆栈.
>类变量(静态变量)作为与该类关联的Class对象的一部分存储.此类对象只能由JVM创建并存储在永久生成中.
如果我错了,请做正确的我
现在我怀疑对象是否可以以任何形式存放在堆栈中.
谢谢.