Hibernate實體類編寫規則

來源:互聯網
上載者:User

標籤:高精度   rac   oat   實體   沒有   bsp   nbsp   span   character   

Hibernate 實體類編寫規則

實體類裡面屬性私人的

 

私人屬性使用公開的set和get方法操作

 

要求實體類有屬性作為唯一值(一般使用id值)

 

實體類屬性建議不使用基礎資料型別 (Elementary Data Type),使用基礎資料型別 (Elementary Data Type)對應的封裝類

(1)八個基礎資料型別 (Elementary Data Type)對應的封裝類

- int - Integer

- char - Character

其他的都是首字母大寫 比如

- double - Double

- long - Long

- short - Short

- float - Float

- boolean - Boolean

- byte - Byte

以及 BigInteger、BigDecmail

BigInteger、BigDecimal沒有相對應的基本類型,主要應用於高精度的運算,BigInteger 支援任意精度的整數,BigDecimal支援任意精度帶小數點的運算。

注意:String不是基本類型。

(2)比如 表示學生的分數,假如 int score;

比如學生得了0分 ,int score = 0;

如果表示學生沒有參加考試,int score = 0;不能準確表示學生是否參加考試

l  解決:使用封裝類可以了, Integer score = 0,表示學生得了0分,

l  表示學生沒有參加考試,Integer score = null;

 

為什麼要提供封裝類呢? 
     答:是為了在各種類型間轉化,通過各種方法的調用。否則你無法直接通過變數轉化。

 

Hibernate實體類編寫規則

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.