开发者

Hibernate query.list() method is returning empty list instead of null value

开发者 https://www.devze.com 2023-01-14 08:43 出处:网络
When there are no rows, both query.list() and criteria.list() are returning empty list instead of a n开发者_开发百科ull value.

When there are no rows, both query.list() and criteria.list() are returning empty list instead of a n开发者_开发百科ull value.

What is the reason behind this?


The reason is not to force null checks in client code, in consistency with Effective Java 2nd Edition, Item 43: Return empty arrays or collections, not nulls.

This makes the client code simpler and less error-prone (and most likely the method implementation as well).

The null-return idiom is likely a holdover from the C programming language, in which array lengths are returned separately from actual arrays. In C, there is no advantage to allocating an array if zero is returned as the length.


It is consistant: a list is returned with all results, whether there are any or not.

0

精彩评论

暂无评论...
验证码 换一张
取 消