⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 warehouse.java

📁 这个是我老师给的关于Java核心技术2的第5章的源代码
💻 JAVA
字号:
/**
   @version 1.02 2004-08-15
   @author Cay Horstmann
*/

import java.rmi.*;
import java.util.*;

/**
   The remote interface for a warehouse with products.
*/
public interface Warehouse extends Remote
{  
   /**
      Gets products that are good matches for a customer.
      @param c the customer to match
      @return an array list of matching products
   */
   ArrayList<Product> find(Customer c) throws RemoteException;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -