2012-11-09 76 views

回答

2

這是在其他情況下的意思。

thing.meth1().meth2().meth3()....

注意meth必須返回的東西,有方法meth2,等等。

2

方法鏈接是許多Hibernate接口支持的編程風格(請參閱@hvgotcodes示例)。如果您確實使用這種編碼風格,最好在不同的行上編寫每個方法調用。

SessionFactory sessionFactory = new Configuration() 
.configure("hibernate.cfg.xml") 
.addResource("test.hbm.xml") 
.buildSessionFactory(); 

否則,在調試器中遍歷代碼可能會很困難。