34
votes
11answers
3k views
C# method can be made static, but should it?
Resharper likes to point out multiple functions per asp.net page that could be made static. Does it help me if I do make them static? Should I make them static and move them to a utility class?
14
votes
13answers
749 views
Is using a lot of static methods a bad thing?
I tend to declare as static all the methods in a class when that class doesn't require to keep track of internal states. For example, if I need to transform A into B and don't rely on some internal …
14
votes
17answers
2k views
Java - static methods best practices
Let's say I have a class designed to be instantiated. I have several private "helper" methods inside the class that do not require access to any of the class members, and operate solely on their …
12
votes
10answers
2k views
Class with single method — best approach?
Say I have a class that's meant to perform a single function. After performing the function, it can be destroyed. Is there any reason to prefer one of these approaches?
// Initialize arguments in …
10
votes
7answers
495 views
Is there any advantage in using a Python class?
I have a Python class full of static methods. What are the advantages and disadvantages of packaging these in a class rather than raw functions?
10
votes
11answers
2k views
How do I know if a C# method is thread safe?
I'm working on creating a call back function for an ASP.NET cache item removal event.
The documentation says I should call a method on an object or calls I know will exist (will be in scope), such as …
8
votes
6answers
2k views
Why can’t static methods be abstract in Java
The question is in Java why can't I define an abstract static method? for example
abstract class foo {
abstract void bar( ); // <-- this is ok
abstract static void bar2(); //<-- this …
6
votes
8answers
2k views
How to mock with static methods?
I'm new to mock objects, but I understand that I need to have my classes implement interfaces in order to mock them.
The problem I'm having is that in my data access layer, I want to have static …
5
votes
5answers
143 views
Why does my ASP.Net static function’s “context” crossover between user sessions?
I think I need some help understanding how static objects persist in an ASP.Net application. I have this scenario:
someFile.cs in a class library:
public delegate void CustomFunction();
public …
5
votes
4answers
660 views
Static method in a generic class?
In Java, I'd like to have something as:
class Clazz<T> {
static void doIt(T object) {
// shake that booty
}
}
But I get
Cannot make a static reference to the non-static type T
I …
5
votes
7answers
312 views
Can I get the same benefits of functional programming (F#) by using more static methods in C#?
I admit I haven't grokked F# yet. But in the 30,000 foot descriptions, they keep talking about easy to test code that doesn't have mutable state. Is that the same as static methods?
Could I get the …
5
votes
8answers
417 views
C#: ReSharper complains when method can be static, but isn’t
Why does ReSharper complain when a method can become static, but is not?
Is it because only one instance of a static method is created (on the type) and thus save on performance?
5
votes
4answers
1k views
“Inline” Class Instantiation in PHP? (For Ease of Method Chaining)
An idiom commonly used in OO languages like Python and Ruby is instantiating an object and chaining methods that return a reference to the object itself, such as:
s = …
4
votes
3answers
134 views
When is it best to use Static Functions in ASP.NET
Hi all,
I have been wondering, When to use static functions and when not to in ASP.NET
What are the advantages and disadvantages in using them, in various aspects like performance, following good …
4
votes
5answers
249 views
Namespace + functions versus static methods on a class
Let's say I have, or am going to write, a set of related functions. Let's say they're math-related. Organizationally, should I:
Write these functions and put them in my MyMath namespace and refer to …
