gpt4 book ai didi

c++ - "Use of undeclared identifier A"

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

关于导致此编译时错误的原因的任何想法?

基本设置:

main.cpp

#include <iostream>

#include "GroupTheorizer.h"

int main()
{
// ...
functs::Adder<char> A; // error on this line
/ ...

return 0;
}

GroupTheorizer.h

#ifndef __GroupTheory__GroupTheorizer__
#define __GroupTheory__GroupTheorizer__

class GroupTheorizer
{
// definitions of members of a GroupTheorizer object
// ...
};

#endif /* defined(__GroupTheory__GroupTheorizer__) */

GroupTheorizer.cpp

#include "GroupTheorizer.h"

#include <set>
#include <iostream>
#include <limits>
#include <string>


// ... implementations of GroupTheorizer members
// ...

namespace functs
{

class Adder
{
private:
static const char symbol = '+';
public:
T operator() (const T & x, const T & y) const { return x + y; };
char getSymbol(void) const { return symbol; };
};

// other functors ...
// ...
}

我相当确定我已将文件正确链接在一起,那么可能是什么问题?

最佳答案

查看您对 Adder 的实现, 看起来你的意思是它是一个模板,但没有这样写。

您只缺少 template <typename T>行。

template <typename T>
class Adder
{
private:
static const char symbol = '+';
public:
T operator() (const T & x, const T & y) const { return x + y; };
char getSymbol(void) const { return symbol; };
};

关于c++ - "Use of undeclared identifier A",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24103370/

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