4
votes
3answers
103 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 performanc …
0
votes
4answers
143 views
static method with polymorphism in c++
hi,
I have a weird issue using polymorphism.
I have a base class that implements a static method. This method must be static for various reasons. The base class also has a pure vir …
1
vote
5answers
131 views
How to find static method calls in large Java project?
I'm refactoring some Java code to be more decoupled by changing some static method calls to non-static calls, for example:
// Before:
DAO.doSomething(dataSource, arg1, ..., argN)
…
3
votes
3answers
138 views
in PHP, when should I use static methods vs abstract classes?
I'm under the interpretation that if I need to access a method statically, I should make the class abstract only if I'll never need it instantiated. Is that true?
0
votes
3answers
70 views
static methods and the call stack in IIS/asp.net
Theoretical question.
If you have 100 separate requests coming to an aspx web page that calls the static method below.
public static GeocodeResult GeocodeQuery(string query)
…
0
votes
7answers
87 views
How do parameters and their usage in methods effect the static/instance design decision?
Just a simple question:
I have read that a class should be made static when it does not modify its instance. So if I have a class which is called Account and it has properties suc …
0
votes
1answer
60 views
What are the advantages of immutable objects over static methods?
interface IDependency
{
string Baz { get; set; }
}
class Foo
{
IDependency dependency;
public Foo(IDependency dependency)
{
this.dependency = dependency;
…
5
votes
5answers
123 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 CustomFun …
0
votes
3answers
190 views
distinguishing between static and non-static methods in c++ at compile time?
For some tracing automation for identifying instances i want to call either:
a non-static method of the containing object returning its identifier
something else which always ret …
32
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 u …
3
votes
5answers
210 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 na …
0
votes
5answers
90 views
Class design: allow a class to be used both as an object and also supply public static methods
I have a silly, little class "FileSystemSize" which can be used both as an object and also via public, static methods. The output is similar, but not identical in each case.
The c …
3
votes
5answers
135 views
What could go wrong with calling a static method with an object in Java?
If I have the following:
class A {
public A() { }
public static void foo() { System.out.println("foo() called"); }
}
public class Main {
public static void main(String [] a …
4
votes
3answers
97 views
What are the gains of converting normal method to static?
As it is clear from question, if I convert a normal method to static what gains will I made?
0
votes
2answers
33 views
PHP custom static method access
Hi,
I'm in PHP and I must access a Static method of an object which name must change.
private $controlleur = null;
private static $instance = null;
private function __c …
