- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于这么多问题,我深表歉意,但我觉得只有将它们视为一个整体时才最有意义
注意 - 所有报价均来自 DDD: Tackling Complexity in the Heart of Software (第 250 和 251 页)
1)
Operations can be broadly divided into two categories, commands and queries.
...
Operations that return results without producing side effects are called functions. A function can be called multiple times and return the same value each time.
...
Obviously, you can't avoid commands in most software systems, but the problem can be mitigated in two ways. First, you can keep the commands and queries strictly segregated in different operations. Ensure that the methods that cause changes do not return domain data and are kept as simple as possible. Perform all queries and calculations in methods that cause no observable side effects
QandC(int entityId)
它查询特定的域实体,从中提取某些值,这些值又用于初始化一个新的值对象,然后将该 VO 返回给调用者。不是根据上面的报价
QandC
一个函数,因为它不会改变任何状态?
QandC
并非如此。 ,因为如果我们多次拨打
QandC
,它会产生不同的结果,假设在两次调用之间的时间这个实体被修改甚至删除。因此,我们如何声明
QandC
是函数吗?
Ensure that the methods that cause changes do not return domain data ...
Ensure that the methods that cause changes do not return domain data ...
VALUE OBJECTS are immutable, which implies that, apart from initializers called only during creation, all their operations are functions.
...
An operation that mixes logic or calculations with state change should be refactored into two separate operations. But by definition, this segregation of side effects into simple command methods only applies to ENTITIES. After completing the refactoring to separate modification from querying, consider a second refactoring to move the responsibility for the complex calculations into a VALUE OBJECT. The side effect often can be completely eliminated by deriving a VALUE OBJECT instead of changing existing state, or by moving the entire responsibility into a VALUE OBJECT.
VALUE OBJECTS are immutable, which implies that, apart from initializers called only during creation, all their operations are functions ... But by definition, this segregation of side effects into simple command methods only applies to ENTITIES.
... consider a second refactoring to move the responsibility for the complex calculations into a VALUE OBJECT.
... consider a second refactoring to move the responsibility for the complex calculations into a VALUE OBJECT.
The side effect often can be completely eliminated by deriving a VALUE OBJECT instead of changing existing state, or by moving the entire responsibility into a VALUE OBJECT.
It depends on the perspective. A database query does not change state and thus has no side effects, however it isn't deterministic by nature, since as you point out the data can change. In the book, the author is referring to functions associated with value object and entities, which don't themselves make external calls. Therefore, the rules don't apply to QandC.
QandC
不是作者描述的一种功能吗?
QandC does not itself change state - there are no side effects. The underlying state may be changed out of band however. Due to this, it is not a pure function.
Again, this is based on CQS.
QandC
由于
QandC
返回实体的机会,作为无副作用函数在将来的某个时候(通过其他操作)修改其状态?
It is considered a query from the CQRS perspective, but it cannot be called a function in the sense that a pure function on a VO is a function due to lack of determinism.
QandC
被认为是一个查询,由于返回一个实体而不被认为是一个函数,这样的副作用是不可预测的,这使得 QandC
本质上是不确定的 Given that VOs are immutable, they are a fitting place to house pure functions. This is another step towards freeing domain knowledge from technical constraints.
I view this as a hint towards event-sourcing. Instead of changing existing state, you add a new event which represents the change. There is still a net side effect, however existing state remains stable.
One of the defining characteristics of an entity is its identity .... By placing business logic into VOs you can consider it outside of the context of an entity's identity. This makes it easier to test this logic, among other things.
Yes that is my understanding of it - there is still a net "side effect". However, there are different ways to attain a side effect. One way is to mutate existing state. Another way is to make the state change explicit with an object representing that change.
Delegating the management of state to the entity and the implementation of behavior to VOs creates certain advantages. One is basic partitioning of responsibilities.
最佳答案
1a) 是的。关于将查询与命令分离的论述基于 Command-query separation principle .
1b) 这取决于观点。数据库查询不会改变状态,因此没有副作用,但它本质上不是确定性的,因为正如您所指出的,数据可能会发生变化。在本书中,作者指的是与值对象和实体相关的函数,它们本身不进行外部调用。因此,该规则不适用于 QandC
.然而,决定论可以被捏造,提供一定程度的“纯粹”。例如,可以创建一个可序列化的事务,以确保数据在其持续时间内不会更改。
1c) QandC
本身不会改变状态 - 没有副作用。然而,底层状态可以在带外改变。因此,它不是 pure function .但是,QandC
的限制不改变状态仍然是有值(value)的。 CQRS恰如其分地证明了该值这就是CQS在分布式场景中的应用。
1d) 同样,这是基于 CQS。对此的另一个看法是 Tell-Don't-Ask principle .然而,鉴于对这些原则的理解,IMO 可以改变规则。例如,一个副作用方法可以返回一个代表结果的 VO。但是,在某些情况下,例如 CQRS + 事件溯源,命令返回 void 可能是可取的。
1e) 从 CQRS 的角度来看,它被认为是一个查询,但在 VO 上的纯函数由于缺乏确定性而成为函数的意义上,它不能被称为函数。
2a) 不,VO 函数不应该改变任何东西的状态,它应该返回一个新对象。
2b) 是的。
2c) 因为功能纯度在更复杂的场景中往往变得更加重要。但是,正如您所指出的,这并不是一个明确而明确的规则。它不应该像基于手头的领域那样基于复杂性。
2d) 鉴于 VO 是不可变的,它们是存放纯函数的合适场所。这是将领域知识从技术限制中解放出来的又一步。
2e) 我认为这是对事件溯源的暗示。您不是更改现有状态,而是添加一个代表更改的新事件。仍然存在净副作用,但现有状态保持稳定。
更新
1b) 是的。
1c) 它是一个无副作用的函数,但它不是一个确定性函数,因为在给定相同输入的情况下,不能认为它总是返回相同的值。例如,返回当前时间的函数是一个无副作用的函数,但在后续调用中肯定不会返回相同的值。
1d) QandC
可以认为没有副作用,但不纯粹。查看函数纯度的另一种方法是引用透明性——在不改变程序行为的情况下用函数值替换函数调用的能力。换句话说,提出问题并不会改变答案。 QandC
可以保证这一点,但仅限于诸如事务之类的上下文中。所以 QandC 可以被认为是一个函数,但只能在特定的上下文中使用。
1e) 我认为令人困惑的部分是作者专门讨论了 VO 和实体上的功能 - 而不是数据库查询,我们正在讨论两者。我的陈述将讨论扩展到数据库查询和 CQRS 给定某些限制,即环境事务。
2d) 我可以看出我说的话有点含糊,我越来越懒了。实体的定义特征之一是其身份。它在其整个生命周期中保持其身份,而其状态可能会发生变化。通过将业务逻辑置于 VO 中,您可以在实体身份的上下文之外考虑它。这使得测试这个逻辑变得更容易,等等。
2e)是的,这是我的理解 - 仍然存在净“副作用”。但是,有不同的方法可以达到副作用。一种方法是改变现有状态。另一种方法是使用代表该更改的对象使状态更改显式。
更新 2
2d) 这个特定的观点可以争论或可以是一个偏好问题。一种观点是该想法基于单一职责原则 (SRP)。实体的职责是将身份与行为和状态关联起来。行为将输入与现有状态相结合以产生状态转换。将状态的管理委托(delegate)给实体,将行为的实现委托(delegate)给 VO 会产生一定的优势。一是基本职责划分。另一个更微妙,也许更具争议性。逻辑可以以无状态的方式考虑。这使得思考这种逻辑更容易,更像是思考一个数学方程式,其中所有变化都是显式的 - 没有隐藏状态。
2e.1) 是的,消除净副作用会改变行为,这不是目标。
2e.2) 是的。
3) 返回 void 的命令有几个优点。一是他们自然而然地更擅长异步场景——无需等待结果。另一个是它允许您将操作表示为单个命令对象 - 同样,因为没有返回值。这适用于 CQRS 和事件溯源。在这些情况下,任何命令输出都作为事件而不是结果进行调度。但同样,如果这些要求不适用,则返回结果对象可能是合适的。
更新 3
a) 是的,这是一种特定类型的分区。
b) 实体的职责是通过委派给 VO 并应用由此产生的状态更改来协调行为。
关于function - DDD : The conondrum of Side-Effect-Free functions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14510273/
main.cpp #include "Primes.h" #include int main(){ std::string choose; int num1, num2; w
似乎函数 qwertyInches() 应该可以工作但是当我在 main() 中调用它时它给了我 [Error] called object 'qwertyInches' is not a funct
我无法理解 C++ 语法的工作原理。 #include using namespace std; class Accumulator{ private: int value; public:
在 类中声明 函数成员时,我们可以同时执行这两种操作; Function first; Function() second; 它们之间有什么区别? 最佳答案 Function 代表任意函数: void
“colonna”怎么可能是一个简单的字符串: $('td.' + colonna).css('background-color','#ffddaa'); 可以正确突出显示有趣单元格的背景,并且: $
我正在尝试将网页中的动态参数中继到函数中,然后函数将它们传递给函数内部的调用。比如下面这个简化的代码片段,现在这样,直接传入参数是没有问题的。但是,如何在不为每个可能的 colorbox 参数设置 s
C++ 中是否有一种模式允许您返回一个函数,它返回一个函数本身。例如 std::function func = ...; do { func = func(); } while (func);
我正在将 Windows 程序集移植到 Linux。我有一些代码要移植。我实际上是 linux 中 C 的新手。我知道 C 基础知识是一样的! typedef struct sReader {
我一直在寻找一个很好的解释,所以我很清楚。示例: this.onDeleteHandler(index)}/> 对比 对比 this.nameChangedhandler(event, perso
function(){}.__proto__ === Function.prototype 和 Function.prototype === function(){}.__proto__ 得到不同的结
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function 据说 Propert
VBA 中的函数没有特殊类型。我很难理解如何在 Excel VBA 中将函数作为参数添加到函数中。 我想要完成的是这样的事情: function f(g as function, x as strin
所以我正在尝试制作一个包(我没有在下面包含我的 roxygen2 header ): 我有这个功能: date_from_text % dplyr::mutate(!!name := lubr
尝试从 std::function 派生一个类,对于初学者来说,继承构造函数。这是我的猜测: #include #include using namespace std; template cla
我正在尝试编写一个返回另一个函数的函数。我的目标是编写一个函数,它接受一个对象并返回另一个函数“search”。当我使用键调用搜索函数时,我想从第一个函数中给定的对象返回该键的值。 propertyO
我非常清楚函数式编程技术和命令式编程技术之间的区别。但是现在有一种普遍的趋势是谈论“函数式语言”,这确实让我感到困惑。 当然,像 Haskell 这样的一些语言比 C 等其他语言更欢迎函数式编程。但即
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 8 年前。 Improv
我在stackoverflow上查过很多类似的问题,比如call.call 1 , call.call 2 ,但我是新人,无法发表任何评论。我希望我能找到关于 JavaScript 解释器如何执行这些
向 Twilio 发送 SMS 时,Twilio 会向指定的 URL 发送多个请求,以通过 Webhook 提供该 SMS 传送的状态。我想让这个回调异步,所以我开发了一个 Cloud Functio
作为 IaC 的一部分,A 功能应用 ,让我们将其命名为 FuncAppX 是使用 Terraform 部署的,它有一个内置函数。 我需要使用 Terraform 在函数应用程序中访问相同函数的 Ur
我是一名优秀的程序员,十分优秀!