search
HomeJavajavaTutorialData table and simple Java conversion _A practical case of reference relationship

To carry out relationship design, the data table corresponds to the following relationships: 1. An employee belongs to a department and needs to add a department reference; 2. An employee has a leader, and the leader must be related to himself and cited by himself 3. A department has multiple employees

//部门类class Dept{    private int deptno;//部门编号
    private String dname;//部门名称
    private String loc;//部门位置

    private Emp emps[];//“引用关系” 多个雇员,描述多这个概念应该使用对象数组进行完成

    //明确定义一个无参构造
    public Dept(){      
    }    public Dept(int deptno,String dname,String loc){//有参构造
        this.deptno = deptno;        this.dname = dname;        this.loc = loc;
    }    //setter方法
    public void setDeptno(int d){        this.deptno = d;
    }    public void setDname(String n){        this.dname = n;
    }    public void setLoc(String l){        this.loc = l;
    }    //对象数组的setter方法
    public void setEmp(Emp[] e){        this.emps = e ;
    }    //getter方法
    public int getDeptno(){        return deptno;
    }    public String getDname(){        return dname;
    }    public String getLoc(){        return loc;
    }    //对象数组的getter方法
    public Emp[] getEmp(){        return emps;
    }    //取得完整信息
    public String getInfo(){        return "部门编号:" + this.deptno + ",名称:" + this.dname + ",位置:" + this.loc;
    }

}//员工类class Emp{    private int empno;    private String ename ;    private String job ;    private double sal;    private double comm ;    private Dept dept;//“引用关系” 在雇员里面保存部门信息

    private Emp mgr;//“引用关系” 在雇员里面设置领导信息

    public Emp(){//无参构造
    }    public Emp(int empno,String ename, String job, double sal, double comm){//有参构造
        this.empno = empno;        this.ename = ename ;        this.job = job;        this.sal = sal ;        this.comm = comm ;
    }    //setter方法
    public void setEmpno(int e){        this.empno = e;
    }    public void setEname(String n){        this.ename = n ;
    }    public void setJob(String j){        this.job = j ;
    }    public void setSal(double s){        this.sal = s ;
    }    public void setComm(double c){        this.comm = c ;
    }    public void setMgr(Emp m){        this.mgr = m;
    }    public void setDept(Dept d){        this.dept = d;
    }    //getter方法
    public int getEmpno(){        return empno;
    }    public String getEname(){        return ename;
    }    public String getJbo(){        return job;
    }    public double getSal(){        return sal;
    }    public double getComm(){        return comm;
    }    public Emp getMgr(){        return mgr;
    }    public Dept getDept(){        return dept;
    }    public String getInfo(){//取得完整信息
        return "雇员编号:" + this.empno + ",姓名:" + this.ename + ",职位:" + this.job + ",工资:" + this.sal + ",佣金:" + this.comm ;
    }
}//测试类,设置数据并取出public class TestDemo {

    public static void main(String[] args) {        // 产生各自的独立对象,设置数据
        Dept dept = new Dept(10,"ACCOUNTING","New York");
        Emp ea = new Emp(1234,"Yiyao","CLERK",900.0,0.0);
        Emp eb = new Emp(1235,"Acan", "MANAGER",4000.0,9.0);
        Emp ec = new Emp(1236,"Dramatic","PRESIDENT",9000.0,80.0);        //设置雇员和领导关系
        ea.setMgr(eb);
        eb.setMgr(ec);        //设置雇员和部门关系
        ea.setDept(dept);
        eb.setDept(dept);
        ec.setDept(dept);        //部门与雇员
        dept.setEmp(new Emp[]{ea,eb,ec});        //取得数据
        System.out.println(ea.getInfo());
        System.out.println("\t|-" + ea.getMgr().getInfo());
        System.out.println("\t|-" + ea.getDept().getInfo());

        System.out.println("-----------------------------------------");//分割线

        System.out.println(dept.getInfo());        for(int x = 0; x < dept.getEmp().length; x++){
            System.out.println("\t|-" + dept.getEmp()[x].getInfo());            if(dept.getEmp()[x].getMgr() != null){
                System.out.println("\t\t|-" + dept.getEmp()[x].getMgr().getInfo());
            }
        }

    }

}
//部门类class Dept{    private int deptno;//部门编号
    private String dname;//部门名称
    private String loc;//部门位置

    private Emp emps[];//“引用关系” 多个雇员,描述多这个概念应该使用对象数组进行完成

    //明确定义一个无参构造
    public Dept(){      
    }    public Dept(int deptno,String dname,String loc){//有参构造
        this.deptno = deptno;        this.dname = dname;        this.loc = loc;
    }    //setter方法
    public void setDeptno(int d){        this.deptno = d;
    }    public void setDname(String n){        this.dname = n;
    }    public void setLoc(String l){        this.loc = l;
    }    //对象数组的setter方法
    public void setEmp(Emp[] e){        this.emps = e ;
    }    //getter方法
    public int getDeptno(){        return deptno;
    }    public String getDname(){        return dname;
    }    public String getLoc(){        return loc;
    }    //对象数组的getter方法
    public Emp[] getEmp(){        return emps;
    }    //取得完整信息
    public String getInfo(){        return "部门编号:" + this.deptno + ",名称:" + this.dname + ",位置:" + this.loc;
    }

}//员工类class Emp{    private int empno;    private String ename ;    private String job ;    private double sal;    private double comm ;    private Dept dept;//“引用关系” 在雇员里面保存部门信息

    private Emp mgr;//“引用关系” 在雇员里面设置领导信息

    public Emp(){//无参构造
    }    public Emp(int empno,String ename, String job, double sal, double comm){//有参构造
        this.empno = empno;        this.ename = ename ;        this.job = job;        this.sal = sal ;        this.comm = comm ;
    }    //setter方法
    public void setEmpno(int e){        this.empno = e;
    }    public void setEname(String n){        this.ename = n ;
    }    public void setJob(String j){        this.job = j ;
    }    public void setSal(double s){        this.sal = s ;
    }    public void setComm(double c){        this.comm = c ;
    }    public void setMgr(Emp m){        this.mgr = m;
    }    public void setDept(Dept d){        this.dept = d;
    }    //getter方法
    public int getEmpno(){        return empno;
    }    public String getEname(){        return ename;
    }    public String getJbo(){        return job;
    }    public double getSal(){        return sal;
    }    public double getComm(){        return comm;
    }    public Emp getMgr(){        return mgr;
    }    public Dept getDept(){        return dept;
    }    public String getInfo(){//取得完整信息
        return "雇员编号:" + this.empno + ",姓名:" + this.ename + ",职位:" + this.job + ",工资:" + this.sal + ",佣金:" + this.comm ;
    }
}//测试类,设置数据并取出public class TestDemo {

    public static void main(String[] args) {        // 产生各自的独立对象,设置数据
        Dept dept = new Dept(10,"ACCOUNTING","New York");
        Emp ea = new Emp(1234,"Yiyao","CLERK",900.0,0.0);
        Emp eb = new Emp(1235,"Acan", "MANAGER",4000.0,9.0);
        Emp ec = new Emp(1236,"Dramatic","PRESIDENT",9000.0,80.0);        //设置雇员和领导关系
        ea.setMgr(eb);
        eb.setMgr(ec);        //设置雇员和部门关系
        ea.setDept(dept);
        eb.setDept(dept);
        ec.setDept(dept);        //部门与雇员
        dept.setEmp(new Emp[]{ea,eb,ec});        //取得数据
        System.out.println(ea.getInfo());
        System.out.println("\t|-" + ea.getMgr().getInfo());
        System.out.println("\t|-" + ea.getDept().getInfo());

        System.out.println("-----------------------------------------");//分割线

        System.out.println(dept.getInfo());        for(int x = 0; x < dept.getEmp().length; x++){
            System.out.println("\t|-" + dept.getEmp()[x].getInfo());            if(dept.getEmp()[x].getMgr() != null){
                System.out.println("\t\t|-" + dept.getEmp()[x].getMgr().getInfo());
            }
        }

    }

}

Related articles:

A simple example of converting Java basic byte[] to various data types

Look at implicit conversions in MySQL and Oracle from Java type conversion

The above is the detailed content of Data table and simple Java conversion _A practical case of reference relationship. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteTop 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteMar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedSpring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedMar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

Node.js 20: Key Performance Boosts and New FeaturesNode.js 20: Key Performance Boosts and New FeaturesMar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

Iceberg: The Future of Data Lake TablesIceberg: The Future of Data Lake TablesMar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

How to Share Data Between Steps in CucumberHow to Share Data Between Steps in CucumberMar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

How can I implement functional programming techniques in Java?How can I implement functional programming techniques in Java?Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version