- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
真实世界Haskell的第8章
globToRegex' (c:cs) = escape c ++ globToRegex' cs
这个函数不是尾递归的,它说答案依赖于 Haskell 非严格(惰性)评估策略。
(++)
运算符的简单定义如下,它不是尾递归的。
(++) :: [a] -> [a] -> [a]
(x:xs) ++ ys = x : (xs ++ ys)
[] ++ ys = ysIn a strict language, if we evaluate
"foo" ++ "bar"
, the entire list is constructed, then returned. Non-strict evaluation defers much of the work until it is needed.If we demand an element of the expression
"foo" ++ "bar"
, the first pattern of the function's definition matches, and we return the expressionx : (xs ++ ys)
. Because the(:)
constructor is non-strict, the evaluation ofxs ++ ys
can be deferred: we generate more elements of the result at whatever rate they are demanded. When we generate more of the result, we will no longer be usingx
, so the garbage collector can reclaim it. Since we generate elements of the result on demand, and do not hold onto parts that we are done with, the compiler can evaluate our code in constant space.
x:(xs ++ ys)
将在恒定空间中进行评估”,如何?听起来尾递归是做什么的! 最佳答案
请记住 "foo"
只是 'f':'o':'o':[]
的语法糖.
也就是说,String
只是 [Char]
的别名这只是一个字符的链接列表。
当客户端代码使用链表时,它会将其分解回头部和尾部(例如 x:xs
),对头部执行某些操作(如果需要),然后递归尾部。
当您的代码正在构建链表时,由于延迟评估,它需要做的就是返回一个 thunk 或 promise 它会在被要求时返回一个链表。当头部被取消引用时,它是按需提供的,而尾部则作为对列表其余部分的 promise 。
应该很容易看出,只要列表没有被复制或以其他方式存储,每个 thunk 将被使用一次然后被丢弃,因此整体存储空间是恒定的。
许多严格的语言公开了一种机制(通常称为生成器)来完成相同类型的惰性列表生成,但是对于惰性求值,这些功能作为语言的一部分“免费”提供——本质上,所有 Haskell 列表都是生成器!
关于lazy-evaluation - (++) 运算符和 (:) operator and lazy evaluation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6222259/
真实世界Haskell的第8章 globToRegex' (c:cs) = escape c ++ globToRegex' cs 这个函数不是尾递归的,它说答案依赖于 Haskell 非严格(惰性)
documentation for gather/take mentions Binding to a scalar or sigilless container will also force la
Lazy 模块中有两种力量: val force : 'a t -> 'a force x forces the suspension x and returns its result. If x h
在 Lazy.Force 的 MSDN 文档中扩展方法说: Forces the execution of this value and returns its result. Same as Val
我正在编写一个 MVC 5 互联网应用程序,我有一个关于使用 interface 的问题与 Lazy initialization . 这里是有问题的类定义: public class WebAPIT
我对 real world haskell 中的代码有点困惑 import qualified Data.ByteString.Lazy.Char8 as L8 import qualified Da
我从 Hibernate 迁移到 EclipseLink,因为我们需要 EclipseLink 可以很好地处理复合主键,而 Hibernate 则不能(确实不能!)。现在我正在修复我们的 JUnit
我正在观看 Java 内存模型视频演示,作者说与 Lazy Initialization 相比,使用 Static Lazy Initialization 更好,我不清楚他说的是什么想说。 我想接触社
我想使用 Rust 和 once_cell实现一些静态常量结构实例,一个静态常量向量包含这些静态结构实例。 示例代码如下: use once_cell::sync::Lazy; pub struct
首先我必须承认:我对 Haskell 完全陌生。我已经练习了一些,现在在字符串操作方面遇到了一些麻烦: 我需要删除/删除从字符串末尾开始的字符。我期望函数 dropWhileEnd 执行此操作,但是当
我想使用 Rust 和 once_cell实现一些静态常量结构实例,一个静态常量向量包含这些静态结构实例。 示例代码如下: use once_cell::sync::Lazy; pub struct
我有一个 Lazy>其中 T 是一个类,它有一个巨大的字符串和关于文件的元数据。我们称它们为属性 HugeString和属性(property)Metadata 我有这个 U 类,它具有相同的属性 H
下面的代码是使用 str1 替换字符串的三种不同方式( str2 、 str3 和 Data.Text.Lazy.replace ) .他们应该给出相同的输出。 import Data.Text.La
我有一个表 Image 保存图像信息。我还想存储图像本身。我也应该 1.将 Blob 存储在同一个图像表中,然后像下面这样延迟获取它 @Basic(optional = false, fetch =
在这篇快速文章中,我们将通过一个例子来讨论Spring的@Lazy注解。 默认情况下,Spring IoC容器会在应用程序启动时创建并初始化所有单体Bean。我们可以通过使用@Lazy注解来阻止单体B
我有一个 viewController,因为我使用了 Page 控件。每个页面有 4 个 ImageView 。 我已经通过了 Xml 并根据其中的图像数量得到了 pageControl 的页数,即
我使用了一个名为 blazy 的 js,当我向下滚动页面到它时,图像会加载。 图像显示在 pingdom 速度测试中,如果延迟加载适用于图像,它是否应该显示在速度测试树中? 最佳答案 根据我的经验,我
浏览器级别的 Lazyload 是几乎所有浏览器的新功能( https://developer.mozilla.org/en-US/docs/Web/Performance/Lazy_loading
我想尝试惰性表达式评估,但我现在不想深入研究 Haskel。拜托,你能帮忙找出其他语言有这个功能吗? 最佳答案 你可以用多种语言模拟它。 this例如,是 C++ 的通用惰性求值器。正如文章所说,它也
关注,据说foldl'是 foldl 的严格版本. 但是我很难理解,strict 是什么意思?意思是?? foldl f z0 xs0 = lgo z0 xs0 where
我是一名优秀的程序员,十分优秀!