gpt4 book ai didi

c++ - 没有构造函数的实例 --- 匹配参数列表(可能是模板问题)

转载 作者:行者123 更新时间:2023-11-28 03:57:13 29 4
gpt4 key购买 nike

我目前正在尝试为我正在进行的项目的 cml ( http://www.cmldev.net/) 数学库编写一个基本包装器。我有一个 cml vector 类的包装器,它有一个私有(private)成员

#ifndef VECTOR3_H_
#define VECTOR3_H_

#include "cml\cml.h"
#include <memory>

namespace Math
{
template<typename T>

class Vector3
{
public:
Vector3( void )
Vector3(T x, T y, T z);
~Vector3(){};

//@Function: Set
//@Description: Set the internals of the vector
//@Parameters: 3 values x, y, z
void set(T x, T y, T z);

private:
// ------------------------------------------------------------
// Copy constructor and assignment operator should be private
Vector3 (const Vector3 &);
Vector3& operator= (const Vector3 &);
//-------------------------------------------------------------

std::auto_ptr<cml::vector<T, cml::fixed<3, -1>> *m_internalVector ;
};
}

(注意我省略了构造函数的实现以减小大小)

在另一个文件中,我使用了一些#defines 来让我的话更容易。

//Vectors
typedef Math::Vector3<float> Vector3f;
//typedef cml::vector2f Vector2f;

typedef Math::Vector3<int> Vector3i;
//typedef cml::vector2i Vector2i;

现在我尝试使用 Vector3f 时出现问题

Vector3f forwards( 0.0f, 0.0f, 1.0f );

我得到错误:

"No instance of constructor 'Math::Vector3::Vector3 [with T = float]' Matches Argument List"

我已经尝试从 auto_ptr 更改为常规指针,以防模板出现问题我也尝试过在不使用 #define 的情况下声明变量,并且出现同样的问题,我是否遗漏了一些东西,因为我可以在我的实现中看到该构造函数。

最佳答案

您在 Vector3(void) 构造函数之后缺少一个 ;

<子>(但我不得不承认,我认为这只是问题的错别字,不一定是问题的真正原因。)

关于c++ - 没有构造函数的实例 --- 匹配参数列表(可能是模板问题),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3076306/

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