C++/CLI - 从特定命名空间引用静态方法的语法

发布于 2024-10-15 06:41:38 字数 547 浏览 3 评论 0原文

我想从某个命名空间中的某个类执行静态方法,但在将其用作方法参数时遇到问题。

示例:

假设有一个类:

namespace ExampleNamespace {
        public ref class A
        {
        public:
            static int MethodA();
        };
}

我想在其他命名空间中使用 MethodA 作为其他方法的参数:

MethodB(MethodA());

我能让它工作的唯一方法就是像这样编写它:

ExampleNamespace::A^ a;
MethodB(a->MethodA());

有没有一种方法可以在没有之前的“a”声明的情况下编写它? 类似的东西

MethodB(ExampleNamespace::A->MethodA()) 

行不通......

提前谢谢你。

I want to execute a static method from certain class in certain namespace, but I have a problem with using it as a method parameter.

Example:

Lets say there is a class:

namespace ExampleNamespace {
        public ref class A
        {
        public:
            static int MethodA();
        };
}

And I want to use MethodA in other namespace as a other's method parameter:

MethodB(MethodA());

Only way I can make it work is by writing it like this:

ExampleNamespace::A^ a;
MethodB(a->MethodA());

Is there a way to write it without that 'a' declaration before?
Something like

MethodB(ExampleNamespace::A->MethodA()) 

wont work...

Thank you in advance.

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

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

发布评论

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

评论(1

断爱 2024-10-22 06:41:38
 MethodB(ExampleNamespace::A::MethodA());
 MethodB(ExampleNamespace::A::MethodA());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文