Immutability is the inability to modify data after it has been created. Modifications are instead made by copying the data. A property of immutable data is that it is *referentially transparent*.
1
vote
2answers
53 views
Immutable Dictionary Vs Dictionary Vs C5 Vs F# - performance
Our application uses plenty of dictionaries which have multi level lookup that are not frequently changing. We are investigating at converting some of the critical code that does a lot of lookup using ...
4
votes
1answer
54 views
When and how should I use `const` and `immutable` in D?
In many modern languages const correctness should be used to clarify interfaces and intent as well as to provide some opportunities to the compiler to optimize. In D there's the cool feature of really ...
1
vote
3answers
46 views
What is the preferred method of updating a reference to an immutable object?
In case we have an immutable object like an ImmutableList(). What is the preferred method for using this object in a multi threaded environment?
Eg
public class MutableListOfObjects()
{
private ...
0
votes
1answer
32 views
Incrementing an instance of int's subclass in it's own method?
I've inherited a class from int and I'm trying to create a method that increases my instance's value inside the method:
class MyInt(int):
def my_method(self, value):
#do_stuff()
...
-4
votes
0answers
25 views
Relationship between cloning and ( mutation and immutation) in java [closed]
Please i request if anyone could explain with the help of an example the relationship between immutation and how cloning could affect it.
1
vote
3answers
53 views
Reclaim first reference of Immutable String
I see many Q&A about Immutable String saying that JVM actually create a new reference when we do the following:
String text = "apple";
text = "orange"; // a new reference is created
My question ...
0
votes
2answers
91 views
Arrays implementation in erlang
My question is, how are arrays implemented in Erlang, as opposed to lists.
With immutable types doing things like,
move ([X | Xs], Ys) ->
[X | Ys].
Ls = move([1,2,3], [2,3,4])
would take ...
11
votes
7answers
308 views
How do Java strings work [duplicate]
I'm trying to understand exactly how Java strings are immutable. I get that this should probably be an easy concept, but after reading several online web pages I still don't quite understand.
I ...
4
votes
1answer
49 views
C# mutability - VS Code Analysis giving me CA2104? Seems… poor. Am I misunderstanding?
In C#, I want to make "smart" enums, kind of like is possible in Java, where there's more information attached to an enum value than just the underlying int. I happened upon a scheme of making a ...
1
vote
4answers
42 views
Most succinct method that takes a single-level hash argument and returns a copy with nil values
Help me write the most succinct method that takes one argument (a single-level hash) and returns a copy with the values set to nil.
example input hash
{
email: 'hans@moleman.com',
first_name: ...
-1
votes
1answer
44 views
Java object not added to ArrayList
I have a problem. I am writing code for an ecosystem with fish and I am trying to add a new Fish object to an existing fish ArrayList . However, when I check the ArrayList it turns out to be empty? ...
0
votes
1answer
26 views
How to produce immutable DTOs without explicitly using a constructor?
Suppose I have a DTO class:
public class SomeImmutableDto {
private final String someField;
private final String someOtherField;
public SomeImmutableDto(String someField, String ...
1
vote
1answer
39 views
Serializing immutable collections with protobuf-net
I'm trying to serialize a class with protobuf-net which contains an immutable collection as a member.
The collection type, ImmutableList<T>, implements ICollection<T> but returns true for ...
0
votes
2answers
51 views
Immutable strings in java
how come this prints true:
String sOne = new String();
sOne = "one";
String sTwo = new String();
sTwo = "one";
System.out.println(sOne == sTwo ? "true": "false");
but this prints false:
String ...
0
votes
1answer
79 views
Scala way / idiom of dealing with immutable List
I have found successes using ideas of immutable List but I am stumped when come to this piece of code here. I find myself has written something more Java than of Scala style. I would prefer to use ...
8
votes
3answers
136 views
java immutable class much slower
I was in need of some Complex math library, so I hesitated between libraries that use immutable Complex and libraries that use mutable Complex. Obviously, I want computations to run reasonable fast ...
-1
votes
1answer
60 views
Convert an object to be immutable [closed]
I had originally created a class that was not immutable, but now I want to have the option to make an immutable equivalent data structure. Pretend, for example, the mutable class:
namespace Utility
...
4
votes
4answers
206 views
What is the data structure behind Clojure's sets?
I recently listened to Rich Hickey's interview on Software Engineering Radio. During the interview Rich mentioned that Clojure's collections are implemented as trees. I'm hoping to implement ...
0
votes
1answer
67 views
How ca I change this class to make immutable methods?
I tried to read up on immutable methods but I still do not understand.
I want to change the BankAccount class' methods to be immutable how can I do that?
public class BankAccount
{
private double ...
5
votes
5answers
98 views
Can anyone explain me what is state and mutable data?
In computer science, functional programming is a programming paradigm
that treats computation as the evaluation of mathematical functions
and avoids state and mutable data.
...
1
vote
2answers
50 views
Assignment to a mutable tuple component in python: a bug? a feature? [duplicate]
We know that Python tuples are immutable, good. When I attempt to change the reference of a tuple component I get an exception, as expected. What is not expected, is the component gets changed ...
2
votes
4answers
46 views
Is there any way to mark an object to indicate it has been through a process?
Take, for example, immutability. How could I modify an object to indicate that it has been made immutable already and need not be wrapped again?
Let us assume we do not want to use reflection to scan ...
3
votes
1answer
83 views
Functional Programming: persistent list that handles freq. item updates efficiently?
Given:
You have a list of items.
You’re using persistent data structures.
You will make frequent updates to the persistent items (data structures) in your list.
An item being modified is likely to ...
0
votes
1answer
48 views
“hide” mutable objects with a factory method
I read some lines in Effective Java: Programming Language Guide
Joshua Bloch and find out that I should avoid the usage of mutable objects. Because of I read the book I know how to make a mutable ...
2
votes
3answers
112 views
Why are the Scala libraries implemented with mutable state?
Why are some methods in Scala's standard libraries implemented with mutable state?
For instance, the find method as part of scala.Iterator class is implemented as
def find(p: A => Boolean): ...
-4
votes
1answer
51 views
What are the benefits of immutable objects in java [closed]
Would you please tell me the benefits of using immutable objects in java.
I know that immutable objects are inherently thread safe. Besides this if we want to
prevent the objects kept in Collection ...
3
votes
5answers
70 views
Java - immutable local variables
It is quite common "good practice" to make local variables final by default. Don't know about eclipse, but in IDEA there is even a checkbox in "create local variable" dialog. But there is one issue ...
1
vote
1answer
18 views
cloning or unmodifiableCollection
During my university classes on Java I learned about the concept of a privacy leak, where a public getter returns a reference to a private mutable object.
The example they gave was as follows: ...
0
votes
3answers
112 views
Scala - Mutable ListBuffer or Immutable list to choose?
I am writing a simple scala program that will calculate moving average of list of quotes of a defined size say 100.
Quotes will be coming at the rate of approx 5-6 quotes per second .
1) Is it good ...
2
votes
2answers
63 views
Is it possible to serialize/deserialize immutable types with protobuf-net on Windows Phone 7/8?
Is it possible to serialize/deserialize types with protobuf-net on Windows Phone 7/8?
I've tried the code below, it seems Constructor skipping isn't supported (i.e. UseConstructor = false) so I ...
1
vote
1answer
41 views
Create a read-only/immutable copy of any object (including deep properties)
How can I create a read-only/immutable version of an object in JavaScript, whose properties cannot be changed? This this should also apply to the properties of any sub objects and so on.
All methods ...
21
votes
6answers
666 views
Must all properties of an immutable object be final?
Must immutable objects have all properties be final?
According to me not. But I don't know, whether I am right.
5
votes
3answers
63 views
Mutability of the **kwargs argument in Python
Consider a case where I change the kwargs dict inside a method:
def print_arg(**kwargs):
print kwargs.pop('key')
If I call the method pop_arg with a dictionary like this:
mydict = ...
0
votes
3answers
112 views
Are Strings *really* immutable in Java?
Everyone knows that Java's String object is immutable which essentially means that if you take String object a and concatenate it with another String object, say b, a totally new String object is ...
3
votes
3answers
171 views
Is there a Java version of Clojure's or Scala's persistent immutable vector?
That is, immutable but data sharing with effectively O(1) indexing.
2
votes
3answers
83 views
How to Increment Values in a Map
I am wrapping my head around state in Clojure. I come from languages where state can be mutated. For example, in Python, I can create a dictionary, put some string => integer pairs inside, and then ...
1
vote
3answers
107 views
Isn't this a bad example for explaining Final in Java?
The Java spec 17.5 has the following code to illustrate the use of final Fields In The Java Memory Model.
(in comparison to normal fields)
class FinalFieldExample {
final int x;
int y;
...
5
votes
3answers
82 views
Protect Final Variables from reflection
I want to design a class to demonstrate immutability, incrementally.
Following is a simple class
public class ImmutableWithoutMutator {
private final String firstName;
private final String ...
2
votes
3answers
48 views
Why does the mutable StringBuilder behave like the immutable string when a reference is changed?
The "C# 4.0 IN A NUTSHELL" 4th edition book by the Albaharis states on page 249:
". . . calling object.ReferenceEquals guarantees normal referential equality."
So, I decided to test this out.
First ...
9
votes
3answers
114 views
How does reflection and immutability supposed to work together
According to JSR-133 immutable objects are thread safe and don't need synchronization. However it's possible to update values of final fields using reflection:
package com.stackoverflow;
import ...
-3
votes
3answers
81 views
String object creation
I'm new to Java, and have a question related to the creation of strings.
Case 1:
String a = "hello";
String b = "world";
a = a + b;
System.out.println(a);
Case 2:
String a;
String a = "hello";
a ...
1
vote
1answer
83 views
OCaml: Dynamic Arrays?
I've been trying to figure out how to resize an already initialized array in OCaml. However, it seems that while you can write a function that will create a brand new array with the elements of the ...
3
votes
1answer
95 views
The CA2104 warning: Is there any way to mark a class as `Immutable` to suppress it?
Consider the following code, which provokes CA2104: Do not declare read only mutable reference types.
public class Test
{
// This provokes CA2104: "Do not declare read only mutable reference ...
0
votes
2answers
141 views
how do I increment an integer variable I passed into a function in Scala?
I declared a variable outside the function like this:
var s: Int = 0
passed it such as this:
def function(s: Int): Boolean={
s += 1
return true
}
but the error lines wont go ...
2
votes
3answers
84 views
clone immutable object in Java
i have an immutable object that has weight as int, in my code, i need to update the weight, inroder to do that, i need to make a copy of that object and set the weight with updated value. but the ...
1
vote
0answers
62 views
what's “immutable variable” means in functional programming
I'm new in functional programming, and I really can not understand the concept of "immutable".
For example, in SML:
val a = 3
val a = a+1
According to the principle of SML, the last line does not ...
0
votes
2answers
142 views
scala class constructor parameters
What's the difference between:
class Person(name: String, age: Int) {
def say = "My name is " + name + ", age " + age
}
and
class Person(val name: String, val age: Int) {
def say = "My name ...
1
vote
0answers
150 views
Does System.Collections.Immutable.IImmutableList<T>.Add from Microsoft's Preview of Immutable Collections have a position requirement?
I am implementing an immutable collection, which provides O(1) stack operations and O(log n) list operations. As a result, adding elements to the front is faster than adding elements to the back. Can ...
0
votes
3answers
102 views
Scala: recursively adding to immutable map?
How can I add to immutable map without using vars? How to bind immutable to a new value? When trying the following code I get an error:
"reassignment to val"
my code:
object Play {
def ...
0
votes
3answers
32 views
Partly mutable API class with a generic variable holder for client use
I am building an API. One of its functions is to perform some resource analysis (imagine a document, URI, or DB, not important what) and return a List<Finding> where Finding is a POJO. I want ...






