gpt4 book ai didi

c++ - C++中另一个类中的模板类实例化

转载 作者:行者123 更新时间:2023-11-28 02:19:44 24 4
gpt4 key购买 nike

我有一个模板类,当我在 main 中实例化它时没有任何问题,但是当我尝试在另一个类中实例化它时却出现问题。有人可以启发我解决这个问题吗

#include<iostream>
#include<string>
using namespace std;

template <class T>
class property {
public:
property(string name)
{
propertyName= name;
}
private:
T item;
string propertyName;
};
main()
{
property<int> myIntProperty("myIntProperty");
}

上面的代码编译没有任何问题。但是

#include<iostream>
#include<string>
using namespace std;

template <class T>
class property {
public:
property(string name)
{
propertyName= name;
}
private:
T item;
string propertyName;
};

class propertyHolder
{
property<int> myIntProperty("myIntProperty");
};

这段代码没有被编译。给我这样的错误

main.cpp|19|错误:字符串常量之前需要标识符|main.cpp|19|错误:字符串常量前需要“,”或“...”|

谢谢,哈里什

最佳答案

property<int> myIntProperty("myIntProperty");

这是一个函数声明,因此它希望您在识别它之后插入一个默认参数,例如 string s = "myIntProperty"

也许你想初始化一个名为myIntProperty的对象,

property<int> myIntProperty {"myIntProperty"};

这可以在 C++11 中完成,但您也可以在构造函数初始化列表中对其进行初始化,

// Header
class propertyHolder {
public:
propertyHolder( string s );
private:
property<int> myIntProperty;
};

// Source
propertyHolder::propertyHolder( string s ) :
myIntProperty( s )
{
}

关于c++ - C++中另一个类中的模板类实例化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32932952/

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