java 休眠查询列表:空或空?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/26847008/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-11-02 10:44:43  来源:igfitidea点击:

hibernate query list: empty or null?

javahibernatelistnulljpql

提问by kuba44

If I have method which use Hibernate, like this:

如果我有使用 Hibernate 的方法,如下所示:

public <T> T typedQuery(Query q, Class<T> type) {
    List<T> results = q.list();

    //result will be null or empty List ?
}

If query won't get any record from table, resultwill be nullor empty List?

如果查询不会从表中获取任何记录,result将是null还是空列表?

回答by Predrag Maric

It will return an empty list, if there are no results. Relevant post

如果没有结果,它将返回一个空列表。相关帖子