5
votes
3answers
106 views
How do I create a cyclic graph of immutable objects in Perl and Moose?
This could seem like an obviously hopeless case, but is there a trick to create a cyclic graph of immutable objects in Perl? Something like this:
package Node;
use Moose;
has [qw/ …
1
vote
3answers
44 views
ImmutableObjectAttribute : WTF ?
I was looking for a built-in attribute to specify that a type is immutable, and I found only this one :
System.ComponentModel.ImmutableObjectAttribute
Using Reflector, I checked …
4
votes
5answers
220 views
Are all final class immutable?
Are all final classes in Java immutable.
String and Integer both are final classes and both are immutable i beleive.
2
votes
8answers
285 views
Immutability of Strings in Java
Consider the following example.
String str = new String();
str = "Hello";
System.out.println(str); //Prints Hello
str = "Help!";
System.out.println(str); //Prints Help!
Now …
9
votes
8answers
178 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++ backgrou …
8
votes
10answers
632 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 constr …
3
votes
2answers
114 views
Is immutability useful on non parallel applications?
I like the immutability concept but sometimes I wonder, when an application isn't meant to be parallel, should one avoid making things immutable?
When an application isn't multi-t …
5
votes
11answers
371 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 a …
8
votes
3answers
231 views
Is there any run-time overhead to readonly?
For some reason, I've always assumed that readonly fields have overhead associated with them, which I thought of as the CLR keeping track of whether or not a readonly field has bee …
1
vote
4answers
181 views
Will System.Numerics.BigInteger be immutable? Should it be?
The .net framework 4 is apparently going to include a BigInteger class. However, I can't seem to find out whether or not it will be immutable. I also can't seem to decide whether o …
4
votes
7answers
518 views
const Dictionary in c#
I have a class in C# that contains a Dictionary, which I want to create and ensure nothing as added, edited or removed from this dictionary as long as the class which contains it e …
2
votes
2answers
322 views
Immutability and thread safety in Python
I'm cleaning some of the Python code I wrote when I was...not as knowledgeable. Primarily I am killing some of the complexity that stemmed from an incomplete understanding of threa …
1
vote
3answers
417 views
Are Delphi strings immutable?
As far as I know, strings are immutable in Delphi. I kind of understand that means if you do:
string1 := 'Hello';
string1 := string1 + " World";
first string is destroyed and yo …
2
votes
4answers
301 views
Creating immutable objects from javabean
Hi All,
I am involved in this project where we are building on good bit of legacy code. I have a particular situation about one big java bean object which has to be transferred …
2
votes
6answers
272 views
How deep would you expect the immutability of an immutable list to be?
If you have an immutable list, you expect it to always return a reference to the same object when you ask for, say
list.get(0)
My question is, would you expect to be able to mut …
