Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那么,为什么 LINQ 不被认为是纯粹的函数式呢?
是因为会产生副作用吗?还是因为它存在于命令式环境中?
LINQ 不是纯函数式编程模型,因为它允许副作用,因此不是引用透明的,这是“纯函数式”的常见定义。