博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《Two Dozen Short Lessons in Haskell》学习(十)- Private Definitions — the where-clause
阅读量:4310 次
发布时间:2019-06-06

本文共 3132 字,大约阅读时间需要 10 分钟。

《Two Dozen Short Lessons in Haskell》(Copyright © 1995, 1996, 1997 by Rex Page,有人翻译为Haskell二十四学时教程,该书如果不用于赢利,可以任意发布,但需要保留他们的copyright)这本书是学习 Haskell的一套练习册,共有2本,一本是问题,一本是答案,分为24个章节。在有PDF文件。几年前刚开始学习Haskell的时候,感觉前几章还可以看下去,后面的内容越来越难以理解。现在对函数式编程有了一些了解后,再来看这些题,许多内容变得简单起来了。

初学Haskell之前一定要记住:

把你以前学习面向过程的常规的编程语言,如Pascal、C、Fortran等等统统忘在脑后,函数式编程完全是不一样的编程模型,用以前的术语和思维来理解函数式编程里的概念,只会让你困惑和迷茫,会严重地影响你的学习进度。

这个学习材料内容太多,想把整书全面翻译下来非常困难,只有通过练习题将一些知识点串起来,详细学习Haskell还是先看其它一些入门书籍吧,这本书配套着学学还是不错的。

第十章 私有定义----where从句

Haskell中的许多名字也称为变量,像是数学方程中的变量variable一样。但与过程式编程完全不同,在函数式编程里这个量,当它定义了之后,实际并不改变。

where从句把数学中的局部定义的概念直接用在编程语言中了。

在SQL查询语句中where只是一个条件表达式,与haskell是不一样的。

 

1 Integral numbers are denoted in Haskell by

a decimal numerals enclosed in quotation marks

b decimal numerals — no quotation marks involved

c decimal numerals with or without quotation marks

d values of type String

 

2 The Haskell system, when interpreting scripts, represents numbers as

a decimal numerals

b binary numerals

c hexadecimal numerals

d however it likes — none of your business anyway

 

3 Encapsulation

a prevents name clashes

b prevents one software component from messing with the internal details of another

c is one of the most important concepts in software engineering

d all of the above

 

4 A where-clause in Haskell defines variables that

a will be accessible from all where-clauses

b take the name of the where-clause as a prefix

c cannot be accessed outside the definition containing the clause

d have strange names

 

5 In Haskell, the beginning and end of a definition is determined by

a begin and end statements

b matched sets of curly braces { }

c indentation

d however it likes — none of your business anyway

 

6 The intrinsic function foldr

a is more generally applicable than foldr1

b takes more arguments than foldr1

c can accommodate an empty sequence as its last argument

d all of the above

 

7 What value does the following command deliver?

HASKELL DEFINITION • ct xs= foldr addOne 0 xs

HASKELL DEFINITION •     where

HASKELL DEFINITION •     addOne x sum = 1 + sum

HASKELL COMMAND • ct [1, 2, 3, 4]

a 10, by computing 1+(2+(3+(4+0)))

b 4, by computing 1+(1+(1+(1+0)))

c 5, by computing 1+(1+(1+(1+1)))

d nothing — ct is not properly defined

 

=========================================================

=========================================================

1 b

5678是整数,而"5678”就是字符串,在各种编程语言都是这样。

 

2 d

Haskell内部如何表达整数,是haskell编译器或解释器的内部机制,不用关心,也没有指出过,。

 

3 d

封装可以防止名字冲突,在软件工程中常用的一个概念,可以防止与其它模块中的变量相混。

 

4 c

在where从句里的变量,当然通常是存在于一个函数定义内的,在这个函数定义内是可见的,但在其它地方都不可访问。

 

5 c

Haskell中的缩进是有含义的,当缩进时,表示前面的定义还没完。

当缩进回到了前面一个级别,则表示当前的定义结束了,开始一个新的定义。

 

6 d

foldr1函数有2个参数,而foldr有3个参数。

例如:foldr1 op [w,x,y] = w 'op' (x 'op' y)

对应于foldr op z [w,x,y] = w 'op' (x 'op' (y 'op' z))

并且foldr op z [] = []

foldr函数可以保证在空列表情况时,也可以得到返回值。而foldr1在给空列表时,出报错。

例如: foldr1 (+) []

报错:Exception: Prelude.foldr1: empty list

而foldr (+) 0 []会得到0

 

7 b

这个函数相当于统计元素的个数

 

 

Hello World

Definitions

How to Run Haskell Programs

List Comprehensions

Function Composition and Currying

Patterns of Computation – Composition, Folding, and Mapping

第23章没有习题。

转载于:https://www.cnblogs.com/speeding/archive/2012/12/08/2807844.html

你可能感兴趣的文章
程序的基础知识
查看>>
FreeModbus在STM32上移植(转)
查看>>
使用 pjax 载入的新页面,新页面上 类方法 无法被触发?
查看>>
sql server从一个数据库复制一个表到另一个数据库的方法
查看>>
微软正式公布Win8版本 ARM版命名为Windows RT
查看>>
4.java设计模式-原型模式(prototype)
查看>>
Javaee -----01----javaee的环境搭建和html标签 ...
查看>>
JVM内存分布和垃圾回收
查看>>
DOM操作指令
查看>>
PHPCMS快速建站系列之类别调用及类别显示页面
查看>>
《第二章 感知机》
查看>>
HomeWork1_Login in
查看>>
javascript中的类
查看>>
新词发现博文收集
查看>>
input text focus去掉默认光影
查看>>
使用JsonP进行跨域请求
查看>>
HDU 5317 RGCDQ (数论素筛)
查看>>
学习JSP(一)
查看>>
node安装-Win+Linux+Mac osx
查看>>
cookie和session笔记
查看>>