gpt4 book ai didi

java - Corba - 服务器端方法可能吗?

转载 作者:行者123 更新时间:2023-12-01 23:52:19 24 4
gpt4 key购买 nike

是否可以使用 corba 对象的服务器端访问和更改变量的方法?

如果是这样,如何做到这一点?

最佳答案

CORBA 对象通过其接口(interface)进行访问,如 IDL 中所述。 .

请参阅OMG tutorial .

您可以在对象接口(interface)中添加一个方法来更新服务器端的“变量”,但该方法应该具有比更新变量更重要的含义和语义。

来自 OMG 示例:

interface salestax  {

float calculate_tax ( in float taxable_amount );
}

我们可以添加一个方法来设置服务器端变量:

interface salestax  {

float calculate_tax ( in float taxable_amount );

void setVariable( in string name, in long value );
}

我们必须修改实现。

关于java - Corba - 服务器端方法可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16155340/

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