更改 API
让我们扩展API以提供更多功能:我们希望允许客户端指定生日贺卡的行列表:
package com.example.birthdayservice;/** Birthday service interface. */interface IBirthdayService {/** Generate a Happy Birthday message. */String wishHappyBirthday(String name, int years, in String[] text);}
This results in an updated trait definition for IBirthdayService:
trait IBirthdayService {fn wishHappyBirthday(&self,name: &str,years: i32,text: &[String],) -> binder::Result<String>;}
- Note how the
String[]in the AIDL definition is translated as a&[String]in Rust, i.e. that idiomatic Rust types are used in the generated bindings wherever possible:inarray arguments are translated to slices.outandinoutargs are translated to&mut Vec<T>.- Return values are translated to returning a
Vec<T>.