os_api得接收c_str()才安全些吧
【 在 speedboy2998 的大作中提到: 】
:
:
void os_api(const char *)
{
...
....
}
void my\_function(std::string\_view sv)
{
os_api(sv.data());
}
int main()
{
std::string str = "abc";
my_function(sv);
return 0;
}
:
: 上面代码有问题吗?
: --
:
发自「今日水木 on IN2010」
--
FROM 222.129.48.*