gpt4 book ai didi

C++ 我什么时候使用 -> 或::

转载 作者:太空狗 更新时间:2023-10-29 23:21:52 25 4
gpt4 key购买 nike

我知道在 C++ 中,您可以使用 ->:: 而不是 . 在 C# 等语言中访问对象的值,例如button->TextSystem::String^,但我不知道什么时候我应该使用 ->::,这非常令人沮丧,因为它会导致我出现许多编译器错误。如果您能提供帮助,我将不胜感激。谢谢:)

最佳答案

-> 是当您访问指针变量的成员时。例如:myclass *m = new myclass(); m->myfunc(); 在指向 myclass 的指针上调用 myfunc():: 是作用域运算符。这是为了显示某物在什么范围内。因此,如果 myclass 在命名空间 foo 中,那么您将编写 foo::myclass mc;

关于C++ 我什么时候使用 -> 或::,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19687796/

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