gpt4 book ai didi

c++ - 传递对模板函数调用运算符重载的引用

转载 作者:行者123 更新时间:2023-11-30 02:38:48 26 4
gpt4 key购买 nike

我有一个用模板函数重载函数调用运算符的类,如下所示:

class Test
{
public:
template<class T>
void operator()(T t)
{
std::cout<<(&t)<<std::endl;
};
};

我想用引用参数调用它,但是当尝试这样做时,它会将参数作为值传递。这是我的测试设置:

template<class T>
void test(T t) {std::cout<<(&t)<<std::endl;}

int main(int argc,char *argv[])
{
Test t;
int i = 5;
std::cout<<(&i)<<std::endl;
t((int&)i); // Passes the argument as a value/copy?
test<int&>(i); // Passes the argument as a reference
while(true);
return 0;
}

输出是:

0110F738 -- Output of the address of 'i'

0110F664 -- Output of the address of the argument in the template overload

0110F738 -- Output of the address of the argument through 'test'

模板函数“test”仅用于验证。

Visual Studio 调试器确认它使用“int”而不是“int&”来进行模板重载:

test_function_call.exe!Test::operator()(int t) Line 9 C++

我如何强制它改用引用?有没有办法在模板函数调用运算符上使用 <> 来指定类型?

最佳答案

那是因为在您的情况下,cv 限定符和参数的引用在执行模板类型推导时被丢弃。通过 std::ref包装器代替

t(std::ref(i));

简单的例子:

#include <iostream>
#include <functional>

template<typename T>
void f(T param)
{
++param;
}

int main()
{
int i = 0;
f(std::ref(i));
std::cout << i << std::endl; // i is modified here, displays 1
}

关于c++ - 传递对模板函数调用运算符重载的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30403016/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com