在模板方法中使用 typeid 时如何摆脱 C4100 警告?
以下 C++ 代码使用 typeid
打印出参数的运行时类:
#include <iostream>
class Foo
{
};
class Bar: public Foo
{
};
template <class O> void printTypeName(O& object)
{
std::cout << typeid(object).name();
}
int main(void)
{
Bar x;
printTypeName(x);
}
由于 Foo
不是多态的,因此 VS C++ 不使用该对象来确定类型信息并引发
C4100 警告(“未引用的形式参数”)。
有没有什么方法可以消除警告,同时保留通过简单的方法调用打印出对象类型的可能性?我不想禁用警告。
The following C++ code uses typeid
to print out the runtime class of the parameter:
#include <iostream>
class Foo
{
};
class Bar: public Foo
{
};
template <class O> void printTypeName(O& object)
{
std::cout << typeid(object).name();
}
int main(void)
{
Bar x;
printTypeName(x);
}
Since Foo
is not polymorphic, VS C++ doesn't use the object to determine type information and raises
C4100 warning ("unreferenced formal parameter").
Is there any way to get rid of the warning, while preserving the possibility to print out the object type with a simple method call? I would prefer not to have to disable the warning.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以用来
关闭警告,然后在完成后再次打开。
You can use
to turn the warning off and then on again when you're done.
您可以使用
UNREFERENCED_PARAMETER
宏那。====
由OP编辑:还可以使用
(void) object;
并避免使用宏(归功于David Rodriguez对此的评论)。
There's an
UNREFERENCED_PARAMETER
macro you can use for that.====
Edited by the OP: one can also use
(void) object;
and avoid using the macro (credits to David Rodriguez for his comment about it).
这对我有用,没有任何错误:
This works for me without any errors: