关闭
mu_xin_g 2022-07-14 09:48 采纳率: 83.3%
浏览 42
已结题

关于#类图#的问题,如何解决?(语言-java)

Maju Enterprise is a new company launched in 2020. The company is in process of hiring new employee to help with their business operation. Once the person is hired, the information will be recorded such as nameientity card, address, assignation and salary. Appropriate employee ID will be assigned to the employee once it is recorded.

Write the encapsulation process by using the class diagram.

img

这个类图对不对.

  • 写回答

1条回答 默认 最新

  • Binary_10010 2022-07-14 09:58
    关注
    
    public class Employee {
        String name;
        String address;
        String assignation;
        int id;
        int salary;
    
        public Employee(String name, String address, String assignation, int id, int salary) {
            this.name = name;
            this.address = address;
            this.assignation = assignation;
            this.id = id;
            this.salary = salary;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public String getAddress() {
            return address;
        }
    
        public String getAssignation() {
            return assignation;
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
    mu_xin_g 2022-07-14 10:02

    你好,我这个类图没有问题对吧,我是根据题目自己建的

    回复
    Binary_10010 回复 mu_xin_g 2022-07-14 10:04

    没问题

    回复
    Binary_10010 回复 mu_xin_g 2022-07-14 10:06

    但是如果按照面向对象来写的话,每一个属性都应该有get/set方法

    回复
    展开全部9条评论
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 7月21日
  • 已采纳回答 7月14日
  • 创建了问题 7月14日
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部