Thrift 接口定义

接口定义之数据类型

类型 Java对应类型
bool boolean
byte byte
i16 short
i32 int
i64 long
double double
string String
list ArrayList
set HashSet
map HashMap
struct class
exception Exception
service interface
enum enum

复制的一位博主整理好的,非常简洁清楚~
作者:扎Zn了老Fe
链接:https://www.jianshu.com/p/f431bb907072
来源:简书

举个例子

i32 findUser();

bool addUser(1:string userId,2:string password,3:string confirmedPassword);

void goToAccountManagement();

你可能感兴趣的:(java,jvm,开发语言)