Tagged Questions

Immutability is the inability to modify the state of an object after it has been created.

learn more… | top users | synonyms (1)

139
votes
71answers
7k views

What's the best name for a non-mutating “add” method on an immutable collection? [closed]

Sorry for the waffly title - if I could come up with a concise title, I wouldn't have to ask the question. Suppose I have an immutable list type. It has an operation Foo(x) which returns a new ...
57
votes
10answers
6k views

Why are mutable structs evil?

Following the discussions here on SO I already read several times the remark that mutable structs are evil (like in the answer to this question). What's the actual problem with mutability and ...
52
votes
11answers
1k views

How to avoid “too many parameters” problem in API design?

I have this API function: public ResultEnum DoSomeAction(string a, string b, DateTime c, OtherEnum d, string e, string f, out Guid code) I don't like it. Because parameter order becomes ...
52
votes
10answers
3k views

Building big, immutable objects without using constructors having long parameter lists

I have some big (more than 3 fields) Objects which can and should be immutable. Every time I run into that case i tend to create constructor abominations with long parameter lists. It doesn't feel ...
48
votes
4answers
17k views

Mutable vs immutable objects

I'm trying to get my head around mutable vs immutable objects. Using mutable objects gets a lot of bad press (e.g. returning an array of strings from a method) but I'm having trouble understanding ...
35
votes
14answers
2k views

What is immutability and why should I worry about it?

I've read a couple of articles on immutability but still don't follow the concept very well. I made a thread on here recently which mentioned immutability, but as this is a topic in itself, I am ...
35
votes
12answers
5k views

What is meant by immutable?

This could be the dumbest question ever asked but I think it is a total confusion for a newbie. Can somebody clarify what is meant by immutable? Why is a String immutable? What are the ...
29
votes
5answers
1k views

Why shouldn't I use immutable POJOs instead of JavaBeans?

I have implemented a few Java applications now, only desktop applications so far. I prefer to use immutable objects for passing the data around in the application instead of using objects with ...
27
votes
5answers
366 views

What is a “mostly complete” (im)mutability approach for C#?

Since immutability is not fully baked into C# to the degree it is for F#, or fully into the framework (BCL) despite some support in the CLR, what's a fairly complete solution for (im)mutability for ...
27
votes
5answers
5k views

C# and immutability and readonly fields… a lie?

I have found that People claim that using all readonly fields in a class does not necessarily make that class's instance immutable because there are "ways" to change the readonly field values even ...
27
votes
7answers
4k views

How do I create an immutable Class?

I am working on creating an immutable class. I have marked all the properties as read-only. I have a list of items in the class. Although if the property is read-only the list can be modified. ...
26
votes
7answers
553 views

Why does Microsoft advise against readonly fields with mutable values?

In the Design Guidelines for Developing Class Libraries, Microsoft say: Do not assign instances of mutable types to read-only fields. The objects created using a mutable type can be modified ...
25
votes
14answers
2k views

Allen Holub wrote “You should never use get/set functions”, is he correct?

Allen Holub wrote the following, You can't have a program without some coupling. Nonetheless, you can minimize coupling considerably by slavishly following OO (object-oriented) precepts (the most ...
23
votes
10answers
3k views

Immutability of structs [closed]

Possible Duplicate: Why are mutable structs evil? I read it in lots of places including here that it's better to make structs as immutable. What's the reason behind this? I see lots of ...
23
votes
8answers
1k views

What's the use of System.String.Copy in .NET?

I'm afraid that this is a very silly question, but I must be missing something. Why might one want to use String.Copy(string)? The documentation says the method Creates a new instance of String ...
23
votes
13answers
6k views

Immutable object pattern in C# - what do you think?

I have over the course of a few projects developed a pattern for creating immutable (readonly) objects and immutable object graphs. Immutable objects carry the benefit of being 100% thread safe and ...
21
votes
8answers
2k views

How to make an immutable object in Python?

Although I have never needed this, it just struck me that making an immutable object in Python could be slightly tricky. You can't just override __setattr__, because then you can't even set attributes ...
20
votes
7answers
257 views

Why doesn't string.Substring share memory with the source string?

As we all know, strings in .NET are immutable. (Well, not 100% totally immutable, but immutable by design and used as such by any reasonable person, anyway.) This makes it basically OK that, for ...
20
votes
6answers
831 views

String immutability in C#

I was curious how the StringBuilder class is implemented internally, so I decided to check out Mono's source code and compare it with Reflector's disassembled code of the Microsoft's implementation. ...
19
votes
8answers
777 views

Immutable data structures performance

I don't get how can something as a Set be immutable and still have an acceptable performance. From what I've read in F# Sets internally use Red Black Trees as their implementation. If each time we ...
19
votes
3answers
2k views

Pure functions in C#

I know C# is getting a lot of parallel programming support, but AFAIK there is still no constructs for side-effects verification, right? I assume it's more tricky now that C# is already laid out. But ...
18
votes
8answers
829 views

Why are immutable objects thread-safe?

class Unit { private readonly string name; private readonly double scale; public Unit(string name, double scale) { this.name = name; this.scale = scale, } public ...
18
votes
12answers
5k views

How do I identify immutable objects in Java

In my code, I am creating a collection of objects which will be accessed by various threads in a fashion that is only safe if the objects are immutable. When an attempt is made to insert a new object ...
17
votes
3answers
199 views

How do I refer to a variable while assigning a value to it, whilst retaining immutability?

I'm fiddling around on my Sunday afternoon and am trying to create a 'room' structure of sorts. Basically, a Room object has a number of exits, which each refer to other Rooms. Now, the first thing ...
17
votes
13answers
2k views

Why do we need immutable class?

I am unable to get what are the scenarios where we need an immutable class. Have you ever faced any such requirement? or can you please give us any real example where we should use this pattern.
17
votes
4answers
534 views

Implement an immutable deque as a balanced binary tree?

I've been thinking for a while about how to go about implementing a deque (that is, a double-ended queue) as an immutable data structure. There seem to be different ways of doing this. AFAIK, ...
17
votes
5answers
1k views

What does immutable mean?

If a string is immutable, does that mean that.... (let's assume JavaScript) var str = 'foo'; alert(str.substr(1)); // oo alert(str); // foo Does it mean, when calling methods on a string, it will ...
16
votes
8answers
963 views

What are the advantages of built-in immutability of F# over C#?

I heard F# has native support for immutability but what about it that can not be replicated in C#? What do you get by an F# immutable data that you don't get from a C# immutable data? Also in F#, is ...
15
votes
1answer
193 views

How to get a List of (immutable and mutable) Sets in scala?

I try to build a list of (mutable and immutable) Sets. The compiler gets into trouble as it cannot figure out the type of that list. I always thought that I can connect Lists of any types and that the ...
15
votes
4answers
358 views

What is the theory behind mutable and immutable types?

One of the things that I admire about Python is its distinction between mutable and immutable types. Having spent a while programming in c before coming to Python, I was astonished at how easily ...
15
votes
2answers
282 views

Correct usage of mutable/immutable lists

At the moment, Im trying to understand Functional Programming in Scala and I came across a problem I cannot figure out myself. Imagine the following situation: You have two classes: Controller and ...
15
votes
6answers
394 views

Can immutable be a memory hog?

Let's say we have a memory-intensive class like an Image, with chainable methods like Resize() and ConvertTo(). If this class is immutable, won't it take a huge amount of memory when I start doing ...
15
votes
11answers
2k views

Are value types immutable by definition?

I frequently read that structs should be immutable - aren't they by definition? Do you consider int to be immutable? int i = 0; i = i + 123; Seems okay - we get a new int and assign it back to i. ...
15
votes
15answers
2k views

Downsides to immutable objects in Java?

The advantages of immutable objects in Java seem clear: consistent state automatic thread safety simplicity You can favour immutability by using private final fields and constructor injection. ...
14
votes
3answers
335 views

How pure and lazy can Scala be?

This is just one of those "I was wondering..." questions. Scala has immutable data structures and (optional) lazy vals etc. How close can a Scala program be to one that is fully pure (in a ...
14
votes
1answer
886 views

Immutable queue in Clojure

What is the best way to obtain a simple, efficient immutable queue data type in Clojure? It only needs two operations, enqueue and dequeue with the usual semantics. I considered lists and vectors of ...
14
votes
7answers
4k views

Advantages of stateless programming?

I've recently been learning about functional programming (specifically Haskell, but I've gone through tutorials on Lisp and Erlang as well). While I found the concepts very enlightening, I still don't ...
13
votes
7answers
476 views

In C#, why can't I modify the member of a value type instance in a foreach loop?

I know that value types should be immutable, but that's just a suggestion, not a rule, right? So why can't I do something like this: struct MyStruct { public string Name { get; set; } } public ...
13
votes
8answers
1k views

non-technical benefits of having string-type immutable

I am wondering about the benefits of having the string-type immutable from the programmers point-of-view. Technical benefits (on the compiler/language side) can be summarized mostly that it is easier ...
13
votes
8answers
278 views

Empirical data on the effects of immutability?

In class today, my professor was discussing how to structure a class. The course primarily uses Java and I have more Java experience than the teacher (he comes from a C++ background), so I mentioned ...
13
votes
8answers
1k views

Are some data structures more suitable for functional programming than others?

In Real World Haskell, there is a section titled "Life without arrays or hash tables" where the authors suggest that list and trees are preferred in functional programming, whereas an array or a hash ...
12
votes
3answers
204 views

Why is it okay that this struct is mutable? When are mutable structs acceptable?

Eric Lippert told me I should "try to always make value types immutable", so I figured I should try to always make value types immutable. But, I just found this internal mutable struct, ...
12
votes
2answers
954 views

Complex data structures in Haskell - how do they work?

I introduced myself to Haskell just yesterday, and I have a question. Probably, a classical newbie question. As I figured out, variables in Haskell are immutable (thus, they are not really ...
12
votes
4answers
418 views

How can I instantiate immutable mutually recursive objects?

I have an immutable recursive type: public sealed class Foo { private readonly object something; private readonly Foo other; // might be null public Foo(object something, Foo other) ...
12
votes
4answers
451 views

Immutable class?

How to make a java class immutable and what is the need of immutability and is there any advantage over this?
12
votes
11answers
2k views

immutable strings vs std::string

I've recent been reading about immutable strings, here and here as well some stuff about why D chose immutable strings. There seem to be many advantages. trivially thread safe more secure more ...
12
votes
8answers
2k views

Are immutable arrays possible in .NET?

Is it possible to somehow mark a System.Array as immutable. When put behind a public-get/private-set they can't be added to, since it requires re-allocation and re-assignment, but a consumer can ...
11
votes
3answers
321 views

A grasp of immutable datastructures

I am learning scala and as a good student I try to obey all rules I found. One rule is: IMMUTABILITY!!! So I have tried to code everything with immutable data structures and vals, and sometimes this ...
11
votes
2answers
226 views

What are the weaknesses in using Immutability + Actor model for concurrency programming?

While building a large multi threaded application for the financial services industry, I utilized immutable classes and an Actor model for workflow everywhere I could. I'm pretty pleased with the ...
11
votes
3answers
178 views

Does Scala have record update syntax for making modified clones of immutable data structures?

In Mercury I can use: A = B^some_field := SomeValue to bind A to a copy of B, except that some_field is SomeValue instead of whatever it was in B. I believe the Haskell equivalent is something ...

1 2 3 4 5 11