0
votes
2answers
75 views
Pickling a staticmethod in Python
Hello all,
I've been trying to pickle an object which contains references to static class methods.
Pickle fails (for example on module.MyClass.foo) stating it cannot be pickled, as module.foo does not …
1
vote
2answers
73 views
Are static methods in ASP.NET code-behind classes non-thread-safe?
Can I use static methods in my ASP.NET Pages and UserControls classes if they don't use any instance members? I.e.:
protected void gridView_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
…
1
vote
2answers
89 views
Calling descendant virtual methods from static method
First let's establish this.
I have
public abstract class Foo
{
public static void StaticMethod()
{
}
}
public class Bar : Foo
{
}
is it valid to call
Bar.StaticMethod();
???
If so, let's …
0
votes
5answers
137 views
Python static methods - how to call a method from another method
When I have regular methods for calling another method in a class I have to do this
class test:
def __init__(self):
pass
def dosomething(self):
print "do something"
…
1
vote
2answers
29 views
C++/CLI : How to declare template array as method parameters
I am a newbie to C++/CLI. What is the equivalent of the following C# code in managed C++/CLI for both the header and source file?
public static bool ArrayEquals<T>(T[] a, T[] b)
{
return …
1
vote
2answers
103 views
Should I create a separate class for this?
My project contains a lot of classes, a bunch of which can be described by XML files. Don't worry, it's not the logic or implementation in XML. It's a game, and an example would be that a game tile …
3
votes
2answers
86 views
Java no name static method
What is this?
public class ABC {
public ABC() {
System.out.println("world");
}
static {
System.out.println("hello");
}
}
Will print:
hello
world
I don't really …
0
votes
1answer
69 views
java static vs non-static using this and event handlers
Hello,
I'm trying to learn about java's event handlers and keep getting errors with type type (static/non-static) methods I create. Some code I'm trying to write looks like:
import javax.swing.*;
…
0
votes
3answers
189 views
What on earth would compell C++ to call this function?
I'm working on a programming language that uses C++ as it's target language for now. I'm hitting an exceptionally strange backtrace.
#1 0x08048d09 in factorial (n=0x8052160) at ir.cpp:35
35 …
0
votes
0answers
26 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
3answers
60 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 …
2
votes
6answers
139 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
2answers
54 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
85 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
148 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 …
