- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在编写一个进行数值计算的库。我正在使用模板,以便最终用户可以选择他们想要的精度。我希望它能同时处理基本类型(double
、float
)和高精度类类型(例如 boost::multiprecision
)。我想知道参数类型应该是 T
还是 const & T
。
在 SO/google 上有很多关于按值传递与按引用传递的帖子。 “经验法则”之一似乎是:
但是,如果您有模板,这会变得困惑:
template<typename T>
T doSomething(T x, T y)
{
return x + y;
}
对比
template<typename T>
T doSomething(const T & x, const T & y)
{
return x + y;
}
对于 boost::multiprecision
,您几乎肯定希望通过 const 引用传递。问题是通过 const &
传递 double
是否比通过值传递更糟糕。许多 SO 答案都说 const &
“没有更好,也许更糟”......但我找不到任何好的硬引用。
我做了以下 benchmark
这似乎表明没有区别,尽管这可能取决于函数的简单性和内联行为。
有可能做这样的事情:
#include <type_traits>
template<typename T>
using choose_arg_type =
typename std::conditional<std::is_fundamental<T>::value,
T,
const T &>::type;
template <typename T>
T someFunc(choose_arg_type<T> arg)
{
return arg + arg;
}
int main()
{
auto result = someFunc<double>(0.0);
return 0;
}
但如果它没有带来任何好处,它会增加复杂性并且您会失去类型推导 ( Any way to fix this type deduction? )
我认为通过 const 引用传递速度较慢的一个原因是,如果它确实在使用引用,则可能存在缓存局部性问题。但是,如果编译器只是针对值进行优化……这无关紧要。
处理此问题的最佳方法是什么?
最佳答案
至少在一种情况下,传递 const
引用可能会禁用优化。但是,最流行的编译器提供了一种重新启用它们的方法。
让我们看看这个函数:
int cryptographicHash( int& salt, const int& plaintext )
{
salt = 4; // Chosen by fair dice roll
// guaranteed to be random
return plaintext; // If we tell them there's a salt,
// this is the last hash function they'll
// ever suspect!
}
看起来很安全,对吧?但是,由于我们是用 C++ 编写的,它是否尽可能快? (绝对是我们想要的加密哈希。)
不,因为如果你调用它会怎样:
int x = 0xFEED;
const int y = cryptographicHash( x, x );
现在通过引用传递的参数别名是同一个对象,所以函数应该像写的那样返回 4
,而不是 0xFEED
。这意味着,灾难性的是,编译器无法再优化其 const int&
参数中的 &
。
但是,最流行的编译器(包括 GCC、clang、Intel C++ 和 Visual C++ 2015 and up)都支持 __restrict
扩展。因此,将函数签名更改为 int cryptographicHash( int& salt, const int& __restrict plaintext )
,所有问题都将永远解决。
由于此扩展不是 C++ 标准的一部分,您可以通过以下方式提高可移植性:
#if ( __GNUC__ || __clang__ || __INTEL_COMPILER || __ICL || _MSC_VER >= 1900 )
# define RESTRICT __restrict
#else
# define RESTRICT /**/
#endif
int cryptographicHash( int& salt, const int& RESTRICT plaintext );
(在 GCC 和 clang 中,这似乎不会更改生成的代码。)
关于c++ - 通过 const 引用传递基本值真的会损害性能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54151289/
标记为家庭作业,因为这是我写的期中问题,但我不明白答案。我被要求在以下语句中解释每个 const 的用途: const char const * const GetName() const { ret
const int* const fun(const int* const& p) const; 我试图弄清楚这个给定函数原型(prototype)的输入参数。我在这两个之间争论,不确定哪个是正确的。
下面的代码用于在同时存在 const 和非 const getter 时减少代码重复。它从非 const 创建 const 版本。我搜索了一下,很多人说我应该从 const 创建非 const 版本。
据我所知,TypeScript 查看了 const string变量作为一个不可变的类型变量,只有那个值,没有其他可能的值。一直以为加as const那是多余的。 为什么我在示例的第二部分得到以下内容
我有一个具有以下签名的方法: size_t advanceToNextRuleEntryRelatedIndex( size_t index, size_t nStrings, char const
首先,有什么区别: (1) const char* (2) char const* (3) const char const* 我相当确定我完全理解这一点,但我希望有人能具体地给我一个句子,这样它就会
这里是新手! 我正在阅读一段代码,我看到作者经常写一个成员函数作为 const int func (const scalar& a) const // etc 你看这里有三个const,现在我明白了中
我总是搞乱如何正确使用 const int*、const int * const 和 int const *。是否有一套规则来定义你可以做什么和不能做什么? 我想知道在赋值、传递给函数等方面所有该做和
我见过人们将 const 用作函数参数的代码。使用 const* 与 const * const 有什么好处?这可能是一个非常基本的问题,但如果有人能解释一下,我将不胜感激。 Bool IsThisN
我总是搞乱如何正确使用 const int*、const int * const 和 int const *。是否有一套规则来定义你可以做什么和不能做什么? 我想知道在赋值、传递给函数等方面所有该做和
这个问题在这里已经有了答案: What is the difference between const int*, const int * const, and int const *? (23 个
如果引用的对象不是 const 对象,那么引用“const”关键字的目的是什么? r1 和 r2 的作用(如下)有什么不同吗? int i = 42; // non const object cons
friend 让我解释原因 const const const const const int const i = 0; 是有效的语法。我拒绝对这个话题有任何想法。虽然我很好奇它是否只是语法问题? 编
我总是搞砸如何正确使用 const int*、const int * const 和 int const *。是否有一套规则来定义你能做什么和不能做什么? 我想知道在分配、传递给函数等方面的所有注意事
常量在 const char* push(const char * const &&_data); 表示无法更改引用的内容。为什么我不能将 const char* 传递给 push? 最佳答案 您的代
我有一个关于在函数参数中涉及指针的最佳实践以及它们是否应该指定为 *const 的问题或 const *const .我知道对于 const 的使用或过度使用存在不同的意见。 ,但至少有一些用途是捕捉
我目前正在为我的类(class)写一个作业,它应该充当一个非常基本的外壳。我快完成了,但是我遇到了 execvp 和我的参数字符数组的问题。这是我的代码的一小段。 //Split the left c
所以,我知道了char const *、char * const 和char const * const 之间的区别。那些是: char* the_string : I can change the
我正在运行一些示例程序以重新熟悉 C++,我遇到了以下问题。首先,这里是示例代码: void print_string(const char * the_string) { cout << t
我正在为系统中的编译错误而苦苦挣扎,这是代码 struct Strless : public binary_function { public : bool operator()(cons
我是一名优秀的程序员,十分优秀!