传递 CustomString&构造函数不会从“string”隐式转换

发布于 2024-09-08 19:51:58 字数 398 浏览 7 评论 0原文

我可以让编译器(msvc++express)将“string”转换为构造函数中的 CustomString,但不能使用引用。因此,如果编译器认为可以的话,它是否不会有相同的机会通过引用传递进行优化,就像使用其他类型传递值一样?

不会使用

new xmlNode("string")

:

 xmlNode( CustomString& label )
 {
    this->text = label;
 }

will 进行隐式转换:

 xmlNode( CustomString label )
 {
    this->text = label;
 }

I can get the compiler (msvc++ express) to convert "string" as a CustomString in a constructor, but not with a reference. Will it therefore not have the same chance of being optimized out with a pass-by-reference anyway, like passing by value with other types can, if the compiler thinks it can?

won't implicit convert using

new xmlNode("string")

:

 xmlNode( CustomString& label )
 {
    this->text = label;
 }

will :

 xmlNode( CustomString label )
 {
    this->text = label;
 }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮凉 2024-09-15 19:51:58

尝试:

xmlNode(const CustomString& label )
{
    this->text = label;
}

try:

xmlNode(const CustomString& label )
{
    this->text = label;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文