本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- 龙儿筝
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- zhanjia
- ajinn
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
- lich0079
最新文章列表
Extended Hello World
++++++++[->++++++++<]>
++++++++.
+++++++++++++++++++++++++++++.
+++++++..
+++.
>++++++++[->++++<]>.<<
++++++++.
--------.
+++.
------.
--------.
>>+.
...
Hello world!
世界您好。
老子 写道道可道,非常道;名可名,非常名。
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
module HelloWorld where
main = d ...
Functional Programming For The Rest of Us
转载自:http://www.defmacro.org/ramblings/fp.html
Introduction
Programmers are procrastinators. Get in, get some coffee, check the mailbox, read the RSS feeds, read the news, check out latest articles on ...
我的学习Haskell经验
才学了一个月不到,谈不上太多的经验
1、现明白abstraction的概念,看看现在你用的语言的抽象能力
2、Haskell--The Craft of Functional Programming 有中山大学乔海燕老师的简单翻译版(淘了老半天了)
3、Haskell 98 (看看那些强大的数学家们怎么定义这个语言)
4、All about Monads
5、Real World ...
谈谈Haskell的抽象
数据抽象
原子
Tuples && Lists
代数类型
Monads
函数抽象
原子
高阶函数
多态(函数类)
模块化(Modules)
最牛的应该是函数可以像有机体一样叠加,无语,不可以这么强的。。
Iterate abstract --Prelude
熟悉Haskell的同志对这个标题很熟悉,iterate Prelude。然而这里的prelude只是本意,前奏曲。我想写点东西,讲讲我对haskell的理解和学习记录,这些文字即是开始。
计算机理论的发展,很大程度都是抽象的发展,iterate abstract 我想这个high-order function非常确切。
iterate abstract
让我开始……
PS:
写道 ...
Section 2.2
2.17
{- Prelude.last
-- | Extract the last element of a list, which must be finite and non-empty.
last :: [a] -&g ...
Wearing the hair shirt: a retrospective on Haskell
写道
Simon Peyton Jones 在 POPL 2003 受邀演講 Wearing the hair shirt: a retrospective on Haskell 中花了不少篇幅介紹 monad,認為它是理論與實務的成功結合,並介紹了它的種種好處。Haskell 唯一的大錯誤,他說,是 monad 這冰冷生硬的數學名詞把人嚇跑了。我們應該把它取名為「暖暖毛毛的東西(warm, fu ...
均值(haskell)
想写一个求均值的函数。写成 mean x = sum(x) / length(x)总是类型不对,double/int除不了。没办法,还没有看到怎么转换类型,只有重写了一个length。mean x = sum(x) / len(x) where len [] = 0.0 len x = 1.0 + len (tail x)