Tagged Questions

2
votes
6answers
134 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 confrontational. I am asking a …
0
votes
3answers
44 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 static Object find (int …
0
votes
0answers
19 views

xajax - bad response when calling a static method

When using XAJAX I have a call to a function that trims a string. this is a simple function and works just as expected. Now I want to make this function available to the whole system so I have added …
0
votes
2answers
32 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 instantiating it as an object …
2
votes
3answers
55 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 thread safe and is only …
4
votes
3answers
127 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 …
0
votes
4answers
166 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 virtual method run() …
1
vote
5answers
154 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) // After: …
33
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?
3
votes
3answers
153 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?
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 …
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 such as Id, Duration, …
5
votes
5answers
134 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 …
0
votes
3answers
94 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) { int …
0
votes
1answer
69 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; } public …

1 2 3 4 5 next
15 30 50 per page