16 lines
293 B
Java
16 lines
293 B
Java
|
package customutil.proxy.staticProxy;
|
||
|
|
||
|
/**
|
||
|
* @author EBU7-dev1-ayh
|
||
|
* @create 2021/11/25 0025 12:02
|
||
|
*/
|
||
|
|
||
|
|
||
|
public class Test {
|
||
|
public static void main(String[] args) {
|
||
|
Customer customer = new DeliverClerk();
|
||
|
String result = customer.order("小炒肉");
|
||
|
System.out.println(result);
|
||
|
}
|
||
|
}
|