gpt4 book ai didi

c++ - 你如何强制编译器在 C++ 中通过引用传递一些变量?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:11:38 27 4
gpt4 key购买 nike

这是一个简单的例子;

template <typename T>
void foo(T t) {}

std::string str("some huge text");
foo(str);

我的问题是如何强制编译器通过引用传递 str不修改函数 foo?

最佳答案

显式传递引用类型:

template <typename T>
void foo(T t) {}

int main() {
std::string str("some huge text");
foo<std::string&>(str);
}

确实修改了您获得的函数实例化(通过生成 void foo<std::string&>(std::string& t) ),但它不会修改函数模板。

Live demo.

关于c++ - 你如何强制编译器在 C++ 中通过引用传递一些变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6800824/

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