gpt4 book ai didi

c++ - "No appropriate default constructor available"-- 为什么还要调用默认构造函数?

转载 作者:太空宇宙 更新时间:2023-11-04 13:06:05 24 4
gpt4 key购买 nike

我已经查看了其他一些与此相关的问题,但我不明白为什么在我的案例中甚至应该调用默认构造函数。我可以只提供一个默认构造函数,但我想了解它为什么这样做以及它会影响什么。

error C2512: 'CubeGeometry' : no appropriate default constructor available  

我有一个名为 ProxyPiece 的类,其成员变量为 CubeGeometry。构造函数应该接受 CubeGeometry 并将其分配给成员变量。这是标题:

#pragma once
#include "CubeGeometry.h"

using namespace std;
class ProxyPiece
{
public:
ProxyPiece(CubeGeometry& c);
virtual ~ProxyPiece(void);
private:
CubeGeometry cube;
};

和来源:

#include "StdAfx.h"
#include "ProxyPiece.h"

ProxyPiece::ProxyPiece(CubeGeometry& c)
{
cube=c;
}


ProxyPiece::~ProxyPiece(void)
{
}

立方体几何体的标题如下所示。使用默认构造函数对我来说没有意义。我还需要它吗?:

#pragma once
#include "Vector.h"
#include "Segment.h"
#include <vector>

using namespace std;

class CubeGeometry
{
public:
CubeGeometry(Vector3 c, float l);

virtual ~CubeGeometry(void);

Segment* getSegments(){
return segments;
}

Vector3* getCorners(){
return corners;
}

float getLength(){
return length;
}

void draw();

Vector3 convertModelToTextureCoord (Vector3 modCoord) const;

void setupCornersAndSegments();

private:
//8 corners
Vector3 corners[8];

//and some segments
Segment segments[12];

Vector3 center;
float length;
float halfLength;
};

最佳答案

您的默认构造函数在此处隐式调用:

ProxyPiece::ProxyPiece(CubeGeometry& c)
{
cube=c;
}

你想要

ProxyPiece::ProxyPiece(CubeGeometry& c)
:cube(c)
{

}

否则你的构造函数等同于

ProxyPiece::ProxyPiece(CubeGeometry& c)
:cube() //default ctor called here!
{
cube.operator=(c); //a function call on an already initialized object
}

冒号后面的东西叫做member initialization list .

顺便说一句,如果我是你,我会将参数视为 const CubeGeometry& c 而不是 CubeGeomety& c

关于c++ - "No appropriate default constructor available"-- 为什么还要调用默认构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42324455/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com