gpt4 book ai didi

java - 声明一个接口(interface)节俭

转载 作者:太空宇宙 更新时间:2023-11-04 11:31:29 26 4
gpt4 key购买 nike

如何在 Thrift 中声明接口(interface)?我的意思是我有接口(interface) IClient,我将它用作服务器中登录函数的参数:

public interface IServer {
void login(Pers pers, IClient client) throws ConcursException;
}

我必须使用 Thrift(Java 服务器,C# 客户端),但我不知道如何声明在登录功能中使用它的接口(interface)。

这是 IClient 接口(interface):

public interface IClient
{
void increasedNrParticipants(Proba proba);
}

谢谢!

最佳答案

作为tutorialsyntax documentation尽管 Thrift 使用的语言被称为 IDL(接口(interface)定义语言),但在 Thrift 中并不声明接口(interface),而是声明一个服务:

service MyCoolService {
void login(1: Pers pers, 2: Client client) throws (1: ConcursException ce)
}

除了内置基本数据类型和容器之外,还必须声明要使用的任何类型:

enum creditibility {
excellent, quite_good, medium_ok, could_be_worse, omg
}

struct Pers {
1: string surname
2: string firstname
3: i32 age
}

struct Client {
1: i32 client_number
2: string company_name
3: Pers contact
4: creditibility creditibility
}

异常以相同的方式声明:

exception ConcursException {
1: bool chapter7
2: bool chapter11
3: double outstanding_amount
}

上述语法的所有微妙之处在 Apache Thrift 网站和 all the other, additional documentation available 上都有更详细的解释。现已上市。

通过使用 Thrift 编译器,可以从该 IDL 生成一些代码,然后像平常一样编译并链接到您的程序中。在我们的例子中,我们需要 Java 代码。假设我们将上面的所有声明保存在名为 myfile.thrift 的文件中,我们输入:

thrift  -gen java  myfile.thrift

再次强烈建议浏览tutorial 。它不需要太多时间,但教授了许多有关 Thrift 如何工作的基础知识。

此外,请查看the test suite code了解有关 Thrift 中替代端点传输、分层传输和协议(protocol)等增强概念的更多信息。

I have the interface IClient and I use it as parameter in login function in Server

与 Thrift 一起使用的所有类型必须是内置基本类型,或者必须使用 IDL 定义。因此该方法不起作用,因为 IClient 不是 IDL 定义的类型。

关于java - 声明一个接口(interface)节俭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43725932/

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