在模板方法中使用 typeid 时如何摆脱 C4100 警告?

发布于 2024-12-05 03:08:38 字数 485 浏览 0 评论 0原文

以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浮云落日 2024-12-12 03:08:38

您可以用来

#pragma warning(disable : 4100)
//.. stuff
#pragma warning(default : 4100)

关闭警告,然后在完成后再次打开。

You can use

#pragma warning(disable : 4100)
//.. stuff
#pragma warning(default : 4100)

to turn the warning off and then on again when you're done.

痕至 2024-12-12 03:08:38

您可以使用 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).

赠我空喜 2024-12-12 03:08:38

这对我有用,没有任何错误:

template <typename T>
void prn(const T&){
    std::cout << typeid(T).name() << std::endl;
}

This works for me without any errors:

template <typename T>
void prn(const T&){
    std::cout << typeid(T).name() << std::endl;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文