Tagged Questions

0
votes
2answers
30 views

What are the side effects of using EmptyWorkingSet?

Hi, I'm using the code below to free up memory on some running programs because my own program needs large memory resources to run faster. [DllImport("psapi.dll")] public static extern bool …
1
vote
2answers
161 views

Java: Why does this method have side effects?

I have a method that is producing side effects, even though certain variables are marked final. Why is this? Perhaps I am confused about what final does. @Test public void testSubGraph() { …
0
votes
1answer
36 views

Using NSArray’s makeObjectsPerformSelector to have side effects

I have an NSArray of Foos in an Objective-C program. I would like to call the doIt function of each Foo, however, the makeObjectsPerformSelector function of NSArray does not allow the original Foos to …
0
votes
2answers
73 views

Methods for side-effects in purely functional programming languages

At the moment I'm aware of the following methods to integrate side-effects into purely functional programming languages: effect systems continuations unique types monads Monads are often cited to …
0
votes
3answers
142 views

How can I programmatically detect side effects (compile time or run time)?

I've got an idea for caching that I'm beginning to implement: Memoizing functions and storing the return along with a hash of the function signature in Velocity. Using PostSharp, I want to check the …
3
votes
2answers
124 views

When exactly does a method have side effects?

As I always understood it, any change to the programs state (or anything to do with IO) is a side effect. It does not matter, whether the change occurs in a global variable or in a private field of …
5
votes
4answers
183 views

How should I manage side effects in a new language design?

So I'm currently working on a new programming language. Inspired by ideas from concurrent programming and Haskell, one of the primary goals of the language is management of side effects. More or less, …
7
votes
10answers
555 views

Are side effects a good thing?

I feel the term rather pejorative. Hence, I am flabbergasted by the two sentences in Wikipedia: Imperative programming is known for employing side effects to make programs function. Functional …
4
votes
9answers
416 views

How do I mark code with side effects?

I'm working on a project on an 8051 where every byte counts. As such, I am using some global variables where I normally wouldn't. The normal method of passing pointers into a function adds too much …
0
votes
5answers
184 views

Are methods that modify reference type parameters bad?

I've seen methods like this: public void Foo(List<string> list) { list.Add("Bar"); } Is this good practice to modify parameters in a method? Wouldn't this be better? public …
1
vote
5answers
111 views

Are there any situations where a side effect on a “get” or “calculate” operation is legitimate?

I've just finished a six hour debugging session for a weird UI effect where I found that my favorite framework's implementation of an interface function called "getVisibleRegion" disabled some UI …
2
votes
3answers
185 views

Nested functions: Improper use of side-effects?

I'm learning functional programming, and have tried to solve a couple problems in a functional style. One thing I experienced, while dividing up my problem into functions, was it seemed I had two …
0
votes
8answers
328 views

Worse sin: side effects or passing massive objects?

I have a function inside a loop inside a function. The inner function acquires and stores a large vector of data in memory (as a global variable... I'm using "R" which is like "S-Plus"). The loop …