Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
675 views
in Technique[技术] by (71.8m points)

functional programming - Haskell: What is immutable data?

in most articles about Haskell you'll find a statement like "Data in Haskell is immutable". I don't quite understand why. For example:

let a = 123
let a = 456

in the main method works. I just changed the data of a from 123 to 456. What am I missing? It's probably a stupid mistake in my train of thought :/

Have a good day!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Actually, a hasn't changed. Try this in ghci to see:

> a = 123
> action = print a
> a = 456
> action
123

Compare with a language that has mutable variables, e.g. python:

>>> a = 123
>>> def action(): print a
... 
>>> a = 456
>>> action()
456

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...