Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
422 views

Python decorator as a staticmethod

I'm trying to write a python class which uses a decorator function that needs information of the instance state. This is working as intended, but if I explicitly make the decorator a staticmetod, I ...
7
votes
1answer
380 views

Calling staticmethod inside class level containers intialization

Given the following example class: class Foo: def aStaticMethod(): return "aStaticMethod" aVariable = staticmethod(aStaticMethod) aTuple = (staticmethod(aStaticMethod),) ...
6
votes
3answers
318 views

What is the difference between all-static-methods and applying a singleton pattern?

I am making a database to store information about the users of my website (I am using stuts2 and hence Java EE technology). For the database I'll be making a DBManager. Should I apply singleton ...
5
votes
2answers
86 views

Calling instance method from a constructor in C#

I have a rather lengthy constructor which is performing various initialisation work, and as such I wanted to factor out some of this work into some functions. This led to me wonder whether I should ...
4
votes
2answers
100 views

Static method as part of a contract

I am implementing an infrastructure for access control of models in a web application. The library has a context class that controllers (and maybe views) use for determining if the current user has ...
4
votes
6answers
2k views

.NET: Determine the type of “this” class in its static method

Well, in a non-static method I could use this.GetType() and it would return the Type. How can I get the same Type in a static method? Of course, I can't just write typeof(ThisTypeName) because ...
3
votes
3answers
335 views

Static method vs module function in python

So I have a class in a module that has some static methods. A couple of these static methods just do crc checks and stuff, and they're not really useful outside of the class (I would just make them ...
3
votes
2answers
208 views

Spaceship objects

I'm trying to make a program which creates a spaceship and I'm using the status() method to display the ship's name and fuel values. However, it doesn't seem to be working. I think I may have messed ...
3
votes
6answers
442 views

Static methods in C#?

What is the performance concern with static method over non-static methods? I have read that Static methods are better in terms of performance but i want to know, how they are faster? If a method is ...
2
votes
1answer
80 views

java, static methods issue in a real case. TableModel implementation

I want to implement a TableModel, that will enable my existing data structure to be displayed by a JTable. Say my data structure is a simple List<MyRow>, where MyRow is: public class MyRow { ...
2
votes
1answer
46 views

Static Method — Is it usual behavior?

Have a small doubt with static method. Documentation says that "Static method can't access instance member variable OR static methods and properties can only access static fields and static events ...
2
votes
2answers
124 views

Is a static-utility method not the best approach in this scenario?

I have this class, let's say Foo. This class is responsible for creating/showing a JFrame, which requires heavy customization. public class Foo{ private static JFrame frame; public static ...
2
votes
2answers
433 views

How to get (sub)class name from a static method in Python?

If I define: class Bar(object): @staticmethod def bar(): # code pass class Foo(Bar): # code pass Is it possible for a function call Foo.bar() to determine the ...
2
votes
3answers
210 views

Trying to use static methods/members, need some help

I've been spoilt with c# coding the last few years and now I'm back onto c++ and finding that I'm having trouble with stuff that is supposed to be simple. I'm using a third party library for gamedev ...
2
votes
3answers
220 views

Using class/static methods as default parameter values within methods of the same class

I'd like to do something like this: class SillyWalk(object): @staticmethod def is_silly_enough(walk): return (False, "It's never silly enough") def walk(self, ...
1
vote
5answers
126 views

Enforcing a static method on a Type

I want a class to have an enforced static method called GetProduct, so that client code can accept a type and safely call that static method after checking that the passed type implements an interface ...
1
vote
1answer
99 views

How to have a self instance in a staticmethod in Python

As in the title I want to know how to have a self instance in a staticmethod in python.
1
vote
7answers
104 views

Having a little trouble with this Java code. Beginner probably mixing some things with C#

package practico1; /** * Programador: Sergio Tapia Gutierrez * Fecha: Lunes 10, Mayo - 2010 * Practico: 1 */ public class Main { public static void main(String[] args) { ...
1
vote
3answers
1k views

Advantage of using a static member function instead of an equivalent non-static member function?

I was wondering whether there's any advantages to using a static member function when there is a non-static equivalent. Will it result in faster execution (because of not having to care about all of ...
0
votes
3answers
42 views

Static Method Call

I have one class which has one static method as shown below. class A { A() { Initialize(); } static void fm() { ; } void Initialize() { ; } } Now in the program ...
0
votes
0answers
47 views

QColorDialog can “reject()” in another thread, but QFileDialog can not

In my pyqt program, there're some dialogs opened by static methods such as QColorDialog.getColor(), or QFileDialog.getSaveFileName(). I wish these dialogs can be manipulated by code in test. The ...
0
votes
0answers
253 views

Cannot call static method in domain service class

I am creating a static method in my domain service class in a Silverlight WCF RIA application, but I am unable to call my static mehod from the presentation layer. Please help.
0
votes
2answers
647 views

can jax-ws web methods return objects that have static methods?

public class Pojo { private String value; public static void printValue() { System.out.println("value=" + value); } } I would want to return this from a web service as follows: ...
-1
votes
7answers
336 views

Why is call to static method in Java not being made?

I have a fairly standard creational pattern whereby a class exposes a static method for returning instances of itself, like so: public class MyClass { private MyClass(/*parameter list*/) { ...
-3
votes
1answer
265 views

Android Intent and startActivity still necessary for calling static methods?

I think I already know the answer to this question because it seems, uh, will uh a bit far fetched. But I am seriously looking for a solution. Suppose that I have an Activity, call it Bluetooth ...