private String orderPrice;//定義類的屬性 /* * get set方法 * String.trim() 返回字符串的副本,忽略前導空白和尾部空白。 */ public String getOrderPrice() { if("".equals(orderPrice)||orderPrice==null){ return "0";//去除該屬性的前后空格並進行非空非null判斷 } return orderPrice; } public void setOrderPrice(String orderPrice) { this.orderPrice = orderPrice == null ? null : orderPrice.trim(); }
