0
votes
3answers
30 views
Java static reflection on subclasses
Hi all. I am implementing a sort of ORM in Java. I am trying to do a static find method that is only in the parent class. Let me get to the point:
public class DB {
public stati …
2
votes
6answers
128 views
What is so great about extension methods? [closed]
Possible Duplicate:
What Advantages of Extension Methods have you found?
All right, first of all, I realize this sounds controversial, but I don't mean to be confrontation …
0
votes
2answers
25 views
php call member variables off a class within static method
Hello,
I am using some method to autoload helper files with functions
The only problem I am having now, is how to call the variables in that class.
Because I am not instantiatin …
2
votes
3answers
42 views
HttpContext.Current.Response inside a static method
I have the following static method inside a static class. My question is it safe to use HttpContext.Current.Response inside a static method? I want to be 100% sure that it is threa …
4
votes
3answers
118 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
156 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
145 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
147 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
7answers
93 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
3answers
87 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)
…
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 …
5
votes
5answers
132 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
1answer
66 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;
…
0
votes
3answers
206 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 …
4
votes
5answers
233 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 …
