某段截取

发布时间 2023-05-17 08:52:42作者: 没有名字的没有的人
class Talent {
    private String name;
    private String gender;
    private int age;
    private String city;
 
    public Talent(String name, String gender, int age, String city) {
        this.name = name;
        this.gender = gender;
        this.age = age;
        this.city = city;
    }