改寫 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);
}