📄 shoppingcartservice.java
字号:
package com.jpioneer.application.shoppingcart.service;
import java.util.Iterator;
import java.util.List;
public interface ShoppingCartService {
public void addItem(String id, String name, double price, double quantity)throws Exception;
public void delCart(String id) throws Exception;
public void editCart(String id,double quantity) throws Exception;
public List getAllCarts() throws Exception;
public float getTotalQuantity() throws Exception;
public float getTotalPrice() throws Exception ;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -