java后台實體類設置默認值


 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();
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM