早上好,我正在运行这段代码,但是我收到错误:“在TEMPLATE1之前为'{',在TEMPLATE1初始化之前”,即使我不明白为什么要这样做。
class MIXIM_API TEMPLATE1 : public cObject
{
public:
/** @brief Constant with all values set to 0. */
static const TEMPLATE1 ZERO;
public:
BasicSafetyMessage BSM;
private:
void copy(const TEMPLATE1& other) { BSM = other.BSM; }
public:
/** @brief Default constructor. */
TEMPLATE1()
: BSM {}
/** @brief Initializes a TEMPLATE1inate. */
TEMPLATE1( BasicSafetyMessage bsm )
: BSM(bsm) {}
/** @brief Initializes TEMPLATE1inate from other TEMPLATE1inate. */
TEMPLATE1(const TEMPLATE1& other)
: cObject(other) { copy(other); }
/** @brief Returns a string with the value of the TEMPLATE1inate. */
std::string info() const;
};
inline std::ostream& operator<<(std::ostream& os, const TEMPLATE1& TEMPLATE1)
{
return os << "(" << TEMPLATE1.BSM << ")";
}
inline std::string TEMPLATE1::info() const {
std::stringstream os;
os << *this;
return os.str();
}
最佳答案
TEMPLATE1()
: BSM {}
我不知道该怎么办。您缺少一组
()
或一组{}
或其他我无法猜到的东西。这是一个空的默认构造函数,使用BSM的默认构造函数:
TEMPLATE1()
{
}
我想你想要那个。
关于c++ - TEMPLATE1之前的预期不合格错误'{',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40909366/