关于函数模板实例化对象通过普通函数传递对象的问题
#include <iostream>using namespace std;
#include <string>
template<class T>
class Maker
{
public:
Maker(T val)
{
this->val =val;
}
T getval()
{
return this->val;
}
private:
T val;
};
void printfInt(const Maker<int> &m)
{
cout<<"val: "<<m.getval();
}
int main()
{
Maker<int> m(20);
printfInt(m);
return 0;
}
报错: passing 'const Maker<int>' as 'this' argument of 'T Maker<T>::getval() ' discards qualifiers [-fpermissive]
问题:为什么会报错?如何解决?
这里不加const 就没事 但是,加上就会报错 #include <iostream>
using namespace std;
#include <string>
template<class T>
class Maker
{
public:
Maker(T val)
{
this->val = val;
}
T getval() const // <------------------- 注意这里
{
return this->val;
}
private:
T val;
};
void printfInt(const Maker<int>& m)
{
cout << "val: " << m.getval();
}
int main()
{
Maker<int> m(20);
printfInt(m);
return 0;
} 对于 const 对象只能调用 const 函数。楼上已经改好了。 永恒的蓝色梦想 发表于 2022-5-3 07:17
对于 const 对象只能调用 const 函数。楼上已经改好了。
哦哦哦,被const修饰了就成为了常对象,常对象只能调用常函数
页:
[1]