鱼C论坛

 找回密码
 立即注册
查看: 2446|回复: 3

[已解决]关于组合的问题

[复制链接]
发表于 2022-3-11 08:42:22 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 ilsoviet1917 于 2022-3-11 08:54 编辑



为什么salary打印不出来?
public class TestComponent {
    public static void main(String[] args){
        Employee e = new Employee("D", 2002, "m");
        System.out.println(e.getSalary());
        System.out.println(e.job.role);
        e.job.setId(513);
        System.out.println(e.job.getId());
    }
}

class Job{
    String role;
    long salary;
    int id;

    public String getRole(){
        return role;
    }
    public void setRole(String role){
        this.role = role;
    }

    public long getSalary(){
        return salary;
    }

    public void setSalary(long salary){
        this.salary = salary;
    }

    public int getId(){
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }
}

class Employee{
    Job job = new Job();//组合:一个类用另一个类作为成员
    String sexual;

    public String getSexual(){
        return sexual;
    }

    public void setSexual(String sexual){
        this.sexual = sexual;
    }

    public void setSalary(){job.setSalary(10000);}

    public long getSalary(){
        return job.salary;
    }

    public Employee(String role, int id, String sexual){
        this.job.role = role;
        System.out.println(role);
        System.out.println(id);
        System.out.println(sexual);
    }
}
最佳答案
2022-3-11 08:59:57
本帖最后由 isdkz 于 2022-3-11 09:07 编辑
ilsoviet1917 发表于 2022-3-11 08:56
public void Person(){
        job.setSalary(10000);
    }


你只是定义了一个方法,你又没有去调用它,构造方法才会自动去调用,

在 Employee 类里面,Employee 才是它的构造方法,

普通的方法你要么在主方法里面去显式调用,要么在构造方法里面显式调用
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-3-11 08:48:39 | 显示全部楼层
本帖最后由 isdkz 于 2022-3-11 09:00 编辑

可以打印出来呀,只不过你还没设置初始值而已,所以默认初始值就是 0 了
public class TestComponent {
    public static void main(String[] args){
        Employee e = new Employee("D", 2002, "m");
        System.out.println(e.getSalary());
        System.out.println(e.job.role);
        e.job.setId(513);
        System.out.println(e.job.getId());
    }
}

class Job{
    String role;
    long salary;
    int id;

    public String getRole(){
        return role;
    }
    public void setRole(String role){
        this.role = role;
    }

    public long getSalary(){
        return salary;
    }

    public void setSalary(long salary){
        this.salary = salary;
    }

    public int getId(){
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }
}

class Employee{
    Job job = new Job();//组合:一个类用另一个类作为成员
    String sexual;

    public String getSexual(){
        return sexual;
    }

    public void setSexual(String sexual){
        this.sexual = sexual;
    }

    public void setSalary(){job.setSalary(10000);}

    public long getSalary(){
        return job.salary;
    }

    public Employee(String role, int id, String sexual){
        this.job.role = role;
        this.setSalary();                                       // 注意这里
        System.out.println(role);
        System.out.println(id);
        System.out.println(sexual);
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-3-11 08:56:38 | 显示全部楼层
isdkz 发表于 2022-3-11 08:48
可以打印出来呀,只不过你还没设置初始值而已,所以默认初始值就是 0 了

  public void Person(){
        job.setSalary(10000);
    }

这里不算设置初始值了吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-3-11 08:59:57 | 显示全部楼层    本楼为最佳答案   
本帖最后由 isdkz 于 2022-3-11 09:07 编辑
ilsoviet1917 发表于 2022-3-11 08:56
public void Person(){
        job.setSalary(10000);
    }


你只是定义了一个方法,你又没有去调用它,构造方法才会自动去调用,

在 Employee 类里面,Employee 才是它的构造方法,

普通的方法你要么在主方法里面去显式调用,要么在构造方法里面显式调用
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-22 15:31

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表