UserProvider.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section5;
  2. import java.util.ArrayList;
  3. /**
  4.  * @author cbf4Life cbf4life@126.com
  5.  * I'm glad to share my knowledge with you all.
  6.  */
  7. public class UserProvider implements IUserProvider {
  8. //用户列表
  9. private ArrayList<User> userList;
  10. //传递用户列表
  11. public UserProvider(ArrayList<User> _userList){
  12. this.userList = _userList;
  13. }
  14. //根据指定的规格查找用户
  15. public ArrayList<User> findUser(IUserSpecification userSpec) {
  16. ArrayList<User> result = new ArrayList<User>();
  17. for(User u:userList){
  18. if(userSpec.isSatisfiedBy(u)){//符合指定规格
  19. result.add(u);
  20. }
  21. }
  22. return result;
  23. }
  24. }