?? order.java
字號:
package bookstoreejb;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2000</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class Order implements java.io.Serializable { public String orderID; public String custName; public String address; public String e_mail; public String booklist; public float price; public Order(String orderID,String custName,String address,String e_mail,String booklist,float price) { this.orderID=orderID; this.custName=custName; this.address=address; this.e_mail=e_mail; this.booklist=booklist; this.price=price; } public static void main(String[] args) {// Order order1 = new Order(); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -