gpt4 book ai didi

c++ - 将类作为函数参数传递时,C++ “is not a type”错误

转载 作者:行者123 更新时间:2023-11-30 03:19:38 26 4
gpt4 key购买 nike

我试图将具有模板的类传递给函数,作为另一个类中的对象。换句话说,我想将Device的对象传递给Sendo的函数成员connect

device.h

#ifndef DEVICE_H
#define DEVICE_H

template<class T> class Device{
public:
T target;
std::string address;
Device(std::string address) : address(address){
target = new T;
}
bool coonect(){
target.connect(address)){
connected = true;
}
}
};

#endif // DEVICE_H

sendo.h
#ifndef SENDO_H
#define SENDO_H

#include "device.h"
class Sendo{
public:
Sendo(){
}
bool connect(Device target){
target.connect();
}
};

#endif // SENDO_H

问题

g++编译器向我显示 sendo.h文件和函数 connect中的错误:
`Device` is not a type

我怎么解决这个问题?

最佳答案

您可能必须(例如)bool connect(Device<int> target),或将Sendo设为模板类。无论如何,声明Device类型的变量都需要一些模板参数。

关于c++ - 将类作为函数参数传递时,C++ “is not a type”错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53578514/

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