[翻译]Java中的关联,组合和聚合(Association, Composition and Aggregation in Java)

前言:

这是一篇关于Java中关联,组合和聚合的翻译,原文地址在这里。我会一段一段地给出原文,然后在下面给出翻译,翻译这篇文章,旨在学习交流。翻译中出现的图片和代码,都直接从原文引用,版权归原文作者所有。

我个人觉得,原文中关于组合(Composition )的例子:图书馆和书,举得并不准确,这应该是一个聚合的例子。但其对关联、组合、聚合含意的描述也有些独到的见解。兼听则明,偏信则暗,尽信书不如无书,其中正误还需读者明查。


原文:

Association

Association is relation between two separate classes which establishes through their Objects. Association can be one-to-one, one-to-many, many-to-one, many-to-many.
In Object-Oriented programming, an Object communicates to other Object to use functionality and services provided by that object. Composition and Aggregation are the two forms of association.

译文:

关联

关联是两个独立的类之间,通过它们的对象建立的关系。关联可以是一对一,一对多,多对一,多对多。
在面向对象编程中,一个对象使用其他对象提供的方法和服务与它通信。组合和聚合是两种形式的关联。

11623847-0774bd649c0bb484.png
Associatn.png
// Java program to illustrate the 
// concept of Association 
import java.io.*; 

// class bank 
class Bank 
{ 
    private String name; 
    
    // bank name 
    Bank(String name) 
    { 
        this.name = name; 
    } 
    
    public String getBankName() 
    { 
        return this.name; 
    } 
} 

// employee class 
class Employee 
{ 
    private String name; 
    
    // employee name 
    Employee(String name) 
    { 
        this.name = name; 
    } 
    
    public String getEmployeeName() 
    { 
        return this.name; 
    } 
} 

// Association between both the 
// classes in main method 
class Association 
{ 
    public static void main (String[] args) 
    { 
        Bank bank = new Bank("Axis"); 
        Employee emp = new Employee("Neha"); 
        
        System.out.println(emp.getEmployeeName() + 
            " is employee of " + bank.getBankName()); 
    } 
} 

原文:

Output:

译文:

输出:

Neha is employee of Axis

原文:

In above example two separate classes Bank and Employee are associated through their Objects. Bank can have many employees, So it is a one-to-many relationship.

译文:

在上面的例子中,两个独立的类BankEmployee 通过它们的对象关联。银行有很多顾员,因此是一个一对多的关系。

11623847-389a0c661a09b954.png
Aggre.png

原文:

Aggregation

It is a special form of Association where:

  • It represents Has-A relationship.
  • It is a unidirectional association i.e. a one way relationship. For example, department can have students but vice versa is not possible and thus unidirectional in nature.
  • In Aggregation, both the entries can survive individually which means ending one entity will not effect the other entity

译文:

聚合

它是一个特殊的关联:

  • 它代表‘has-a’(有一个)关系。
  • 它是一个单向的关联,例如:一种单方面的关系. 举个例子: 院系可以有多个学生,但反过来就不可能(译注:学生不可能有多个学院),这本质上是单向关联.
  • 在聚合中,两个类的实例可以单独存活,这意味着,结束一个实例不会影响其他实例.
// Java program to illustrate 
//the concept of Aggregation. 
import java.io.*; 
import java.util.*; 
  
// student class 
class Student  
{ 
    String name; 
    int id ; 
    String dept; 
      
    Student(String name, int id, String dept)  
    { 
          
        this.name = name; 
        this.id = id; 
        this.dept = dept; 
          
    } 
} 
  
/* Department class contains list of student 
Objects. It is associated with student 
class through its Object(s). */
class Department  
{ 
      
    String name; 
    private List<Student> students; 
    Department(String name, List<Student> students)  
    { 
          
        this.name = name; 
        this.students = students; 
          
    } 
      
    public List<Student> getStudents()  
    { 
        return students; 
    } 
} 
  
/* Institute class contains list of Department 
Objects. It is asoociated with Department 
class through its Object(s).*/
class Institute  
{ 
      
    String instituteName; 
    private List<Department> departments; 
      
    Institute(String instituteName, List<Department> departments) 
    { 
        this.instituteName = instituteName; 
        this.departments = departments; 
    } 
      
    // count total students of all departments 
    // in a given institute  
    public int getTotalStudentsInInstitute() 
    { 
        int noOfStudents = 0; 
        List<Student> students;  
        for(Department dept : departments) 
        { 
            students = dept.getStudents(); 
            for(Student s : students) 
            { 
                noOfStudents++; 
            } 
        } 
        return noOfStudents; 
    } 
      
}  
  
// main method 
class GFG 
{ 
    public static void main (String[] args)  
    { 
        Student s1 = new Student("Mia", 1, "CSE"); 
        Student s2 = new Student("Priya", 2, "CSE"); 
        Student s3 = new Student("John", 1, "EE"); 
        Student s4 = new Student("Rahul", 2, "EE"); 
      
        // making a List of  
        // CSE Students. 
        List <Student> cse_students = new ArrayList<Student>(); 
        cse_students.add(s1); 
        cse_students.add(s2); 
          
        // making a List of  
        // EE Students 
        List <Student> ee_students = new ArrayList<Student>(); 
        ee_students.add(s3); 
        ee_students.add(s4); 
          
        Department CSE = new Department("CSE", cse_students); 
        Department EE = new Department("EE", ee_students); 
          
        List <Department> departments = new ArrayList<Department>(); 
        departments.add(CSE); 
        departments.add(EE); 
          
        // creating an instance of Institute. 
        Institute institute = new Institute("BITS", departments); 
          
        System.out.print("Total students in institute: "); 
        System.out.print(institute.getTotalStudentsInInstitute()); 
    } 
} 

原文:

Output:

译文:

输出:

Total students in institute: 4

原文:

In this example, there is an Institute which has no. of departments like CSE, EE. Every department has no. of students. So, we make a Institute class which has a reference to Object or no. of Objects (i.e. List of Objects) of the Department class. That means Institute class is associated with Department class through its Object(s). And Department class has also a reference to Object or Objects (i.e. List of Objects) of Student class means it is associated with Student class through its Object(s).
It represents a Has-A relationship.

译文:

在这个例子中,一个学院有若干院系,像CSE,EE。每一个院系有若干学生。因此,我们创建了Institute(学院)类,它有指向单个Department(院系)对象或一系列Department(院系)对象(例如对象列表)的一个引用。这意味着,Institute(学院)类通过Department院系类的对像与院系类关联。并且院系类还引用Student(学生类)的一个或多个对象(例如对象列表),意味着它通过 Student(学生)类的对象与学生类关联。

11623847-10399f5f4c291f1c.png
Reference.png

原文:

When do we use Aggregation ??
Code reuse is best achieved by aggregation.

译文:

我们什么时候使用聚合?
代码复用最好通过聚合实现。

原文:

Composition

Composition is a restricted form of Aggregation in which two entities are highly dependent on each other.

  • It represents part-of relationship.
  • In composition, both the entities are dependent on each other.
  • When there is a composition between two entities, the composed object cannot exist without the other entity.

原文:

组合

组合是聚合的一个受限制形式,其中的两个实例之间相互高度依赖。

  • 它代表了‘part-of’(一部分)的关系。
  • 在组合中,两个实例之间相互依赖
  • 如果两个实例之间有组合关系,合成对象不能脱离另一个实例存在。

原文:

Lets take example of Library.

译文:

让我们用图书馆举例。

// Java program to illustrate 
// the concept of Composition 
import java.io.*; 
import java.util.*; 

// class book 
class Book 
{ 

    public String title; 
    public String author; 
    
    Book(String title, String author) 
    { 
        
        this.title = title; 
        this.author = author; 
    } 
} 

// Libary class contains 
// list of books. 
class Library 
{ 

    // reference to refer to list of books. 
    private final List<Book> books; 
    
    Library (List<Book> books) 
    { 
        this.books = books; 
    } 
    
    public List<Book> getTotalBooksInLibrary(){ 
        
    return books; 
    } 
    
} 

// main method 
class GFG 
{ 
    public static void main (String[] args) 
    { 
        
        // Creating the Objects of Book class. 
        Book b1 = new Book("EffectiveJ Java", "Joshua Bloch"); 
        Book b2 = new Book("Thinking in Java", "Bruce Eckel"); 
        Book b3 = new Book("Java: The Complete Reference", "Herbert Schildt"); 
        
        // Creating the list which contains the 
        // no. of books. 
        List<Book> books = new ArrayList<Book>(); 
        books.add(b1); 
        books.add(b2); 
        books.add(b3); 
        
        Library library = new Library(books); 
        
        List<Book> bks = library.getTotalBooksInLibrary(); 
        for(Book bk : bks){ 
            
            System.out.println("Title : " + bk.title + " and "
            +" Author : " + bk.author); 
        } 
    } 
} 

原文:

Output

译文:

输出

Title : EffectiveJ Java and  Author : Joshua Bloch
Title : Thinking in Java and  Author : Bruce Eckel
Title : Java: The Complete Reference and  Author : Herbert Schildt

原文:

In above example a library can have no. of books on same or different subjects. So, If Library gets destroyed then All books within that particular library will be destroyed. i.e. book can not exist without library. That’s why it is composition.

译文:

在上面的例子中,一个图书馆可以有一系列相同或不同科目的书,如果图书馆被摧毁,那么里面所有的书会被毁掉。也就是,书不能脱离图书馆存在。这也是成为组合的理由。

原文:

Aggregation vs Composition

译文:

聚合与组合

原文:

  1. Dependency: Aggregation implies a relationship where the child can exist independently of the parent. For example, Bank and Employee, delete the Bank and the Employee still exist. whereas Composition implies a relationship where the child cannot exist independent of the parent. Example: Human and heart, heart don’t exist separate to a Human
  2. Type of Relationship: Aggregation relation is “has-a” and composition is “part-of” relation.
  3. Type of association: Composition is a strong Association whereas Aggregation is a weak Association.

译文:

  1. 依赖性:聚合意味着一个关系:子实例可以独立于父实例存在。例如,银行和顾员,删除银行,顾员仍然存在。然而组合意味着一个关系:子实例不可以独立于父实例存在。例如,人和心脏,心脏不能离开人。
  2. 关系类型:聚合关系是 “has-a” (有一个),组合关系是“part-of”(一部分)。
  3. 关联类型:组合是一个强关联,而聚合是一个弱关联。
// Java program to illustrate the 
// difference between Aggregation 
// Composition. 
  
import java.io.*; 
  
// Engine class which will  
// be used by car. so 'Car' 
// class will have a field  
// of Engine type. 
class Engine  
{ 
    // starting an engine. 
    public void work() 
    { 
          
        System.out.println("Engine of car has been started "); 
          
    } 
      
} 
  
// Engine class 
final class Car  
{ 
      
    // For a car to move,  
    // it need to have a engine. 
    private final Engine engine; // Composition 
    //private Engine engine;     // Aggregation 
      
    Car(Engine engine) 
    { 
        this.engine = engine; 
    } 
      
    // car start moving by starting engine 
    public void move()  
    { 
          
        //if(engine != null) 
        { 
            engine.work(); 
            System.out.println("Car is moving "); 
        } 
    } 
} 
  
class GFG  
{ 
    public static void main (String[] args)  
    { 
          
        // making an engine by creating  
        // an instance of Engine class. 
        Engine engine = new Engine(); 
          
        // Making a car with engine. 
        // so we are passing a engine  
        // instance as an argument while 
        // creating instace of Car. 
        Car car = new Car(engine); 
        car.move(); 
          
    } 
} 

原文:

Output:

译文:

输出:

Engine of car has been started 
Car is moving 

原文:

In case of aggregation, the Car also performs its functions through an Engine. but the Engine is not always an internal part of the Car. An engine can be swapped out or even can be removed from the car. That’ why we make The Engine type field non-final.

译文:

在聚合的情形中,Car(汽车) 能通过一个Engine(引擎)工作。但是引擎通常不是汽车内部的一部分。一个引擎可以被替换甚至从汽车中移除。这是我们把Engine类的成员变量定义成non-final的原因。

原文:

This article is contributed by Nitsdheerendra. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to [email protected]. See your article appearing on the GeeksforGeeks main page and help other Geeks.

译文:

这篇文章由Nitsdheerendra贡献,如果你喜欢GeeksforGeeks并且想投稿,你也可以用 contribute.geeksforgeeks.org 写一篇文章,或者把你的文章发送到[email protected]。期待你的文章出现在GeeksforGeeks 上,并且能帮助其他极客。

原文:

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

译文:

如果你发现任何错误,或者想分享更多关于以上话题的信息,请写评论。

猜你喜欢

转载自blog.csdn.net/weixin_34267123/article/details/86953560