C++ 中的模板参数

发布于 2024-09-27 06:54:11 字数 672 浏览 11 评论 0原文

假设我有任意模板方法,它可以按值按常量引用接收参数(显然,对于简单类型和相应的对象)。

编写模板函数原型时如何处理这种情况?

我可以做这样的事情:

template <typename T> void Foo(T value) {
   // Do something.
}

template <typename T> void Foo(const T& value) {
   // Do something, yeah.
}

// Specialization for first prototype. 
template <> void Foo<int>(int value) { }

// Specialization for second prototype. 
template <> void Foo<Object>(const Object& value) { }

但这种方法只适用于简单的函数,它纯粹充当其他一些调用的包装器。

如果函数(非模板化版本)内部有很多代码,这意味着我必须将代码复制两次。

我可以吗让这里变得更聪明?

Suppose I have arbitrary template method, which could receive parameters by value and by const reference (obviously, for trivial types and for objects accordingly).

How is this situation handled when writing template function prototypes?

I could make something like:

template <typename T> void Foo(T value) {
   // Do something.
}

template <typename T> void Foo(const T& value) {
   // Do something, yeah.
}

// Specialization for first prototype. 
template <> void Foo<int>(int value) { }

// Specialization for second prototype. 
template <> void Foo<Object>(const Object& value) { }

But this approach is only okay for trivial functions, that act purely as a wrapper for some other calls.

If the function (non-templated version) has a lot of code inside it, this means I would have to copy the code twice.

Can I make something smarter here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

躲猫猫 2024-10-04 06:54:11

始终使用 const 引用,因为将基本类型作为 const 引用传递并没有太多开销。

Just take by const reference ALWAYS, because there isn't much overhead in passing primitive types as const references.

浅黛梨妆こ 2024-10-04 06:54:11

仅针对 const 引用编写模板代码,并依靠编译器来优化引用。

Write your template code for const references only and rely on the compiler to optimize the references away.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文