gpt4 book ai didi

c++ - 将调用什么重载的 C++ 函数?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:56:05 26 4
gpt4 key购买 nike

<分区>

这里是主题的主题:

#include <string>
#include <iostream>

void test(bool val)
{
std::cout << "bool" << std::endl;
}

void test(std::string val)
{
std::cout << "std::string" << std::endl;
}

int main(int argc, char *argv[])
{
test("hello");
return 0;
}

程序的输出是bool。为什么选择 bool 变体?

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