在构造函数中,我可以获取成员的地址并依靠它们将保持不变

In a constructor can I take the address of members and rely that they will remain unchanged?

本文关键字:依靠 地址 构造函数 我可以 获取 成员      更新时间:2023-10-16

我有这样一行代码:

boneHierarchy = BoneHierarchy(Point3D(24.5f,
                                       84.0f + HumanBoundingBox::HEIGHT/2.0f ,24.5f
                                      ),
                              CompassRadians(0.0f),
                              renderingEngine
                             );

BoneHierarchy有一些向量作为私有成员。 我获取向量的地址并将它们传递给渲染类。 但是当我调用向量的大小成员函数时,我得到了垃圾。 我正在获取向量的地址,而不是其中的元素。

BoneHierarchy::BoneHierarchy(Point3D const& position,
                             CompassRadians const& heading,
                             Renderer* renderingEngine) : counter(0), renderingEngine(renderingEngine)
{    


    CoordinateSystem bodyCoordSys = CoordinateSystem(
                                                     Vector3D(0.0f,1.0f,0.0f),
                                                     Vector3D(0.0f,0.0f,1.0f));

    map<Normal3D::enumeration, TextureCoordinates> cubeTextureKind;
    Normal3D::enumeration normal;
    for (normal = Normal3D::begin(); normal != Normal3D::end(); ++normal)
    {
        cubeTextureKind[normal] = TextureAtlas::textureAtlasCoordLookup(WOOD);
    }
    Bone body = Bone(
                     Vector3D(0.0f, HumanBoundingBox::HEIGHT/2.0f,0.0f),
                     HumanBoundingBox::DIM,
                     Euler3D(0.0f,0.0f,0.0f),
                     cubeTextureKind,
                     bodyCoordSys);
    //TODO there are two positions for the human, one here and one in mesh vbo, unify these into one.
    body.setPosition(Vector3D(position.getX(),position.getY(),position.getZ()));
    body.setEuler(Euler3D((float) (Math::toDegrees(heading.getValue())),0.0f,0.0f));
    drawBone(body,UPDATE_ALL);
    root = body;

    map<string,Renderer::Buffer> vboVariableMap;
    vboVariableMap["aVertexPosition"] = Renderer::Buffer(verticesBuf);
    vboVariableMap["aTextureCoord"] = Renderer::Buffer(texCoordsBuf);
    vboVariableMap["index"] = Renderer::Buffer(indicesBuf);
    cout << "aBoneIndex " << boneIndexBuf.size() << endl;
    vboVariableMap["aBoneIndex"] = Renderer::Buffer(boneIndexBuf);
    vboVariableMap["uBoneMatrix0"] = Renderer::Buffer(transformMatrixBuf);
    GLuint textureID = 0; 
    Renderer::VBODescription vboDescription = Renderer::VBODescription("boneShader",
                                                                       vboVariableMap,
                                                                       GL_DYNAMIC_DRAW,
                                                                       indicesBuf.size(),
                                                                       textureID);
    bufferID = renderingEngine->registerBuffer(vboDescription);
    cout << "bufferID " << bufferID << endl;
    renderingEngine->printBoneIndexSize();
    cout << &(getBoneIndexBuf()) << endl;
}

Renderer::Buffer::Buffer(vector<GLfloat> const& data):
floatData(&data), ushortData(NULL), target(GL_ARRAY_BUFFER)
{
    printf("pointer: %p, size: %lun", floatData, floatData->size());
}
Renderer::Buffer::Buffer(vector<GLushort> const& data):
floatData(NULL), ushortData(&data), target(GL_ELEMENT_ARRAY_BUFFER)
{
}

如果接受Point3DCompassRadiansBoneHierarchy 构造函数计算其自己的向量成员的地址,那很好。他们的地址不会改变。

该代码还显示赋值语句。右侧临时BoneHierarchy的向量成员的地址将与左侧存储在boneHierarchy中的BoneHierarchy对象的地址不同。确保你没有复制赋值运算符中的地址,否则boneHierarchy对象最终将引用不再存在的临时对象的向量成员。您还需要检查复制构造函数。

他们的地址不会改变。此外,如果您不在初始值设定项列表中,则其内容应在整个构造过程中有效。

这里提供的代码不足。假设您只想创建一个实例,请改用以下代码行:

 BoneHierarchy boneHierarchy(Point3D(24.5f, 84.0f + HumanBoundingBox::HEIGHT/2.0f ,24.5f), 
 CompassRadians(0.0f), renderingEngine);

这将在本地堆栈中创建一个实例。正如 rob 指出的那样,您必须调用 BoneHierarchy 的赋值运算符。