gpt4 book ai didi

java - ".and"和 "where"代表什么?

转载 作者:行者123 更新时间:2023-12-02 04:06:17 25 4
gpt4 key购买 nike

我无法理解以下代码:

final Specifications<PaymentBatch> criteriaSpecification = 
where(paymentBatchesInZone(getCurrentZone()))
.and(new PaymentBatchSearchFilter(paymentBatchSearchQueryDTO));

.andwhere 代表什么?

最佳答案

这是一个名为 fluent interface 的模式.

有关详细信息,请参见此处:Is it bad practice to make a setter return "this"?

对函数的每次调用都会返回当前对象,因此可以在不声明单独引用的情况下进行后续方法调用。

因此,where()and() 方法都是 DAO pattern 的一部分。并提供创建 SQL WHERE 语句的方法。

关于java - ".and"和 "where"代表什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34242989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com