0
votes
3answers
54 views
Any way to make a mutable object derived from an immutable object in C#?
I'm interested in making an immutable class that has properties that cannot be modified, and a mutable class that derives from it. These objects would be simple data objects repre …
2
votes
4answers
78 views
How to do numerical simulation with immutable data in Clojure?
I'm using Clojure and I need to run a small simulation. I have a vector of length n (n is usually between 10 and 100) that holds values. On each simulation round (maybe 1000 rounds …
1
vote
4answers
67 views
Is a Download class a bad candidate for immutability?
I have a class that i use to do downloads. The class is observable and i use it as a swing UI model object too. However it is too slow, both to start (from the http handshaking i p …
0
votes
1answer
31 views
Using foreach to iterate over immutable value-type collections
I am reading through a coding standards document, and one suggestion is to avoid iterating over immutable value-type collections (such as String arrays) with a foreach loop.
I und …
0
votes
5answers
69 views
How can I assign final variables of the base class within a derived class’ constructor in Java?
I have a base Color class that looks something like this. The class is designed to be immutable, so as a result has final modifiers and no setters:
public class Color
{
public …
0
votes
4answers
94 views
Are inmutable objects always threadsafe?
It is safe to assume that working with or passing around an immutable object would always be threadsafe?
3
votes
8answers
156 views
Functional Data Structures in Java
Does the Java standard library have any functional data structures, like immutable Sets, Lists, etc., with functional update?
2
votes
2answers
54 views
can I tell Hibernate a class is immutable so it will share the objects to save cost of construction?
I have some classes that represent immutable objects (Quantity, Price, Probability). Is there some way to tell Hibernate that the objects will never change so it can re-use object …
4
votes
11answers
251 views
Strings are immutable - that means I should never use += and only StringBuffer?
Strings are immutable, meaning, once they have been created they cannot be changed.
So, does this mean that it would take more memory if you append things with += than if you crea …
37
votes
47answers
2k views
What’s the best name for a non-mutating “add” method on an immutable collection?
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 …
4
votes
2answers
102 views
Is BigInteger immutable or not?
In .NET 4 beta 2, there is the new Numerics namespace with struct BigInteger. The documentation states that it is an immutable type, as I would have expected.
But I'm a little c …
1
vote
4answers
95 views
Why is NHibernate deleting immutable class instance?
I'm trying to migrate an app from NHibernate 1.x to 2.1, and I've noticed something odd: my immutable objects are being deleted in my integration tests.
For example, this test use …
0
votes
3answers
74 views
Is there an efficient index persistent data structure with multiple indexes
I am looking for an efficient indexed persistent data structure. I typically work in .NET and am aware of FSharp's Map however that implementation and most others I am aware of on …
2
votes
2answers
97 views
In C#, can a method return List such that clients can only read it, but not write to it?
Let's say I have a C# class:
class Foo
{
private List<Bar> _barList;
List<Bar> GetBarList() { return _barList; }
...
}
A client can call it:
var barList = f …
5
votes
4answers
153 views
why classes such as Font, are immutable?
not only it distress the programmer, it distress the GC (making a new instance every time).
or why aren't they structures?
thanks.
EDIT: do you think that at least it could prov …
