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
72 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
136 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"
…
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 …
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
68 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 …
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
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
59 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
53 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 …
