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 …
3
votes
6answers
325 views
Are there any good reasons why closures aren’t immutable in C#?
I've been going over and over this in my head, and I can't seem to come up with a good reason why C# closures are mutable. It just seems like a good way to get some unintended cons …
1
vote
3answers
94 views
Mutable Data in OCaml
I've created a mutable data structure in OCaml, however when I go to access it, it gives a weird error,
Here is my code
type vector = {a:float;b:float};;
type vec_store = {mutab …
0
votes
3answers
110 views
How to restrict access to mutable or immutable methods?
Hi
In a new Java project I try to apply as much best practices as possible. The one I'm having problems with is immutability. Although I understood the concept and already built s …
0
votes
1answer
83 views
pitfalls of collections of entities in Hibernate
OK, this is a follow-up question to this one, since I am really confused now.
Suppose I have a one-to-many or many-to-many association between entities Person and Event such that …
1
vote
7answers
79 views
Python object intialization bug. Or am I misunderstanding how objects work?
1 import sys
2
3 class dummy(object):
4 def __init__(self, val):
5 self.val = val
6
7 class myobj(object):
8 def __init__(self, resources):
9 …
1
vote
3answers
56 views
Mutating a lock object
Hi Guys
Just curious to know (in as much detail as possible), why is it a bad practice to
modify the object while using it as a lock.
//Assuming the lockObject is globally avail …
3
votes
2answers
206 views
F#: How do you declare the values of a dictionary entry as mutable?
The Google yields plenty of example of adding and deleting entries in an F# dictionary (or other collection). But I don't see examples to the equivalent of
myDict["Key"] = MyValue …
2
votes
3answers
291 views
F# Mutable to Immutable
Gday All,
I have been dabbling in some F# of late and I came up with the following string builder that I ported from some C# code. It converts an object into a string provided it …
3
votes
4answers
238 views
mutable fields for objects in a Java Set
Am I correct in assuming that if you have an object that is contained inside a Java Set<> (or as a key in a Map<> for that matter), any fields that are used to determine iden …
7
votes
3answers
351 views
Clojure mutable storage types
I'm attempting to learn Clojure from the API and documentation available on the site. I'm a bit unclear about mutable storage in Clojure and I want to make sure my understanding is …
1
vote
1answer
132 views
C# design for an object where some properties are expensive: excuse to make it mutable?
Yes, I know, yet another question about mutable objects. See this for general background and this for the closest analogue to my question. (though it has some C++ specific overtone …
1
vote
3answers
135 views
F#: How do you return multiple values and assign them to mutable variables?
This is what I have so far.
let Swap (left : int , right : int ) = (right, left)
let mutable x = 5
let mutable y = 10
let (newX, newY) = Swap(x, y) //<--this works
//none of …
1
vote
3answers
213 views
Basic F# questions: mutability, capitalization standards, functions vs. methods
Feel free to point me to other answers if these have already been asked!
I'm just starting F# with the new release this month. I've got some background in both OO and functional l …
0
votes
3answers
88 views
Mutable Value Objects / Sharing State (and beer brewing!)
I'm a rusty programmer attempting to become learned in the field again. I've discovered, fitfully, that my self-taught and formal education both induced some bad habits. As such, I …
