package homework0804.entity; /** * @author WanJl * @version 1.0 * @title Studyable * @description * @create 2026/8/6 */ public interface Studyable { void study(); // 学习 }