Tagged Questions
Methods that neither require an instance of the class nor can they implicitly access the data (or this, self, Me, etc.) of such an instance
85
votes
11answers
9k 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?
54
votes
10answers
48k views
Objective-C: Class vs Instance Methods?
What's the difference between a class method and an instance method?
Are instance methods the accessors (getters & setters) while class methods are pretty much everything else?
Thanks,
51
votes
6answers
21k views
Why can't static methods be abstract in Java
The question is in Java why can't I define an abstract static method? for example
abstract class foo {
abstract void bar( ); // <-- this is ok
abstract static void bar2(); //<-- this ...
38
votes
19answers
16k 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 ...
35
votes
11answers
9k views
Class with single method — best approach?
Say I have a class that's meant to perform a single function. After performing the function, it can be destroyed. Is there any reason to prefer one of these approaches?
// Initialize arguments in ...
31
votes
7answers
3k views
Why doesn't Java allow overriding of static methods?
Why is it not possible to override static methods?
If possible, please use an example.
28
votes
16answers
16k views
Why can't I define a static method in a Java interface?
Here's the example:
public interface IXMLizable<T>
{
static T newInstanceFromXML(Element e);
Element toXMLElement();
}
Of course this won't work. But why not?
One of the possible issues ...
25
votes
12answers
3k views
Is using a lot of static methods a bad thing?
I tend to declare as static all the methods in a class when that class doesn't require to keep track of internal states. For example, if I need to transform A into B and don't rely on some internal ...
23
votes
5answers
11k views
Static method in a generic class?
In Java, I'd like to have something as:
class Clazz<T> {
static void doIt(T object) {
// shake that booty
}
}
But I get
Cannot make a static reference to the non-static type T
I ...
19
votes
11answers
7k views
How do I know if a C# method is thread safe?
I'm working on creating a call back function for an ASP.NET cache item removal event.
The documentation says I should call a method on an object or calls I know will exist (will be in scope), such as ...
17
votes
13answers
3k views
In Java, is there any disadvantage to static methods on a class?
Lets assume that a rule (or rule of thumb, anyway), has been imposed in my coding environment that any method on a class that doesn't use, modify, or otherwise need any instance variables to do its ...
17
votes
7answers
2k views
ReSharper complains when method can be static, but isn't
Why does ReSharper complain when a method can become static, but is not?
Is it because only one instance of a static method is created (on the type) and thus save on performance?
16
votes
8answers
1k views
When should I use static methods in a class and what are the benefits?
I have concept of static variables but what are the benefits of static methods in a class. I have worked on some projects but I did not make a method static. Whenever I need to call a method of a ...
15
votes
7answers
2k 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 namespace and refer to ...
13
votes
6answers
535 views
Always create classes in C++?
Coming from a Java background it is new for me to deal with the choice of creating a class or just implementing the functions I might need. Normally this is no question when it comes to modeling ...
12
votes
8answers
13k 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 ...
11
votes
3answers
795 views
Is “inherited” the correct term to explain static method of superclass can be accessed by subclass?
Clarification: this question is not about access modifier
Confirmed that B.m() and b.m() statements both works in the following code:
class A {
static void m() { //some code }
}
class B extends A ...
11
votes
11answers
485 views
“Abstract static” method - how?
There are already several SO questions on why there is not abstract static method/field as such, but I'm wondering about how one would go about implementing the following psuedo-code:
class Animal {
...
11
votes
12answers
8k views
Java: when to use static methods
I am wondering when to use static methods? Say If i have a class with a few getters and setters, a method or two, and i want those methods only to be invokable on an instance object of the class. Does ...
11
votes
6answers
534 views
Why can I only access static members from a static function?
I have a static function in a class.
whenever I try to use non static data member, I get following compile error.
An object reference is required for the nonstatic field, method, or property member
...
10
votes
4answers
186 views
what's the point of declaring static functions in PHP?
So in PHP you can have
Class A{
function B(){}
}
and you can call this as if it were a static function:
A::B();
My question is...if I can do this, then why should I ever declare the function ...
10
votes
2answers
177 views
Why static method overrides base class non-static method?
struct B {
void foo () {}
};
struct D : B {
using B::foo;
static void foo () {}
};
int main ()
{
D obj;
obj.foo(); // calls D::foo() !?
}
Member method and static member method are ...
10
votes
7answers
670 views
Is there any advantage in using a Python class?
I have a Python class full of static methods. What are the advantages and disadvantages of packaging these in a class rather than raw functions?
9
votes
2answers
248 views
class static member function chosen over global function with same name?
Doubt originated from here
int g() {
cout << "In function g()" << endl;
return 0;
}
class X {
public:
static int g() {
cout << "In static member function X::g()" ...
8
votes
2answers
286 views
`staticmethod` and `abc.abstractmethod`: Will it blend?
In my Python app I want to make a method that is both a staticmethod and an abc.abstractmethod. How do I do this?
I tried applying both decorators, but it doesn't work. If I do this:
import abc
...
8
votes
4answers
3k views
C# class instance with static method vs static class memory usage
How does C#, or other languages for that matter, handle memory allocation (and memory de-allocation) between these two scenarios:
1.) A method on a static class is invoked.
public Program {
Foo ...
7
votes
2answers
103 views
Can't use “static” keyword on a static method in a c++ class implementation file (.cpp)
Consider:
// In Vector2.h
class Vector2
{
public:
// returns the degrees in radians
static double calcDir(double x, double y);
}
// In Vector2.cpp
double ...
7
votes
3answers
180 views
Why cant we use const members in static member functions?
class TConst
{
const int i;
int& ref;
public:
TConst(int n):i(n),ref(n){}
static void p1(){prn(i);}//error here
};
My compiler generates error when i try to use const class ...
7
votes
2answers
128 views
Static block vs static method - initializing static fields
Out of curiosity, I measured the performance between static block and static method initializer. First, I implemented the above mentioned methods in two separate java classes, like so:
First:
class ...
7
votes
1answer
72 views
Multiple paamayim nekudotayims in PHP, why not?
In PHP 5.3.6, I've noticed that the following won't work:
class Foo{
public static $class = 'Bar';
}
class Bar{
public static function sayHello(){
echo 'Hello World';
}
}
...
7
votes
1answer
176 views
C# interface cannot contain operators
Can anyone please explain why C# interfaces are not allowed to contain operators?
Thanks.
7
votes
4answers
245 views
Should I never use static methods and classes and singletons when following the Test Driven Development paradigm
I've been reading that static methods, static classes, and singletons are evil when you try to implement unit testing in your project. When following the TDD paradigm, should I just forget that they ...
7
votes
4answers
560 views
What is the difference between static methods in a Non static class and static methods in a static class?
I have two classes Class A and ClassB:
static class ClassA
{
static string SomeMethod()
{
return "I am a Static Method";
}
}
class ClassB
{
...
7
votes
7answers
7k views
Getting the name of a child class in the parent class (static context)
I'm building an ORM library with reuse and simplicity in mind; everything goes fine except that I got stuck by a stupid inheritance limitation. Please consider the code below:
class BaseModel {
...
6
votes
6answers
158 views
“Static methods are death to testability” - alternatives for alternative constructors?
It is being said that "static methods are death to testability". If that is so, what is a viable alternative pattern for the below?
class User {
private $phone,
$status = 'default',
...
6
votes
1answer
63 views
How do you refactor static classes to use dependency injection?
I've inherited some code that has a class AuthenticationManager with all static methods.
Im introducing DI and wanted to add a constructor that took a dependency UserController
UserController ...
6
votes
5answers
133 views
Why do static methods need to be wrapped into a class?
Sorry for the unlearned nature of this question. If there's a simple answer, just a link to an explanation will make me more than happy.
After 6 months programming I find static classes to be ...
6
votes
4answers
344 views
Static and instance methods in Python
Can I define a Python method to be both static and instance at the same time? Something like:
class C(object):
@staticmethod
def a(self, arg1):
if self:
blah
blah
...
6
votes
3answers
333 views
Static method get - is this bad practice?
Had a discussion with a colleague about wether this is bad practice or not. Now I can not find immediate examples of this online.
We have a lot of database object mappers and call it's functions ...
6
votes
4answers
351 views
Java - calling static methods vs manual inlining - performance overhead
I am interested whether should I manually inline small methods which are called 100k - 1 million times in some performance-sensitive algorithm.
First, I thought that, by not inlining, I am incurring ...
6
votes
3answers
138 views
PHP: How can $this variable inside one class be object of another one?
Here is an example:
class Test {
public function TestMethod() {
print_r($this); // Gives me "Test1 Object ( )"
}
}
class Test1 {
public function Test1Method() {
...
6
votes
6answers
510 views
Realistic use case for static factory method?
I'm familiar with the idea and benefits of a static factory method, as described in Joshua Bloch's Effective Java:
Factory methods have names, so you can have more than one factory method with the ...
6
votes
7answers
581 views
How garbage collection works on object references?
I am confused about garbage collection process on objects.
object A = new object();
object B = A;
B.Dispose();
By calling a Dispose on variable B only, the created object will not be ...
6
votes
7answers
1k views
When to make a method static?
I'd like to know how people decide whether to define a method as static. I'm aware that a method can only be defined as static if it doesn't require access to instance fields. So let's say we have a ...
6
votes
4answers
6k views
Help with C++ static method
Is it possible to return an object from a static method in C++ like there is in Java? I am doing this:
class MyMath {
public:
static MyObject calcSomething(void);
private:
};
And I ...
6
votes
7answers
429 views
Can I get the same benefits of functional programming (F#) by using more static methods in C#?
I admit I haven't grokked F# yet. But in the 30,000 foot descriptions, they keep talking about easy to test code that doesn't have mutable state. Is that the same as static methods?
Could I get the ...
6
votes
10answers
4k views
Static Methods in an Interface/Abstract Class
First off, I understand the reasons why an interface or abstract class (in the .NET/C# terminology) cannot have abstract static methods. My question is then more focused on the best design solution.
...
5
votes
3answers
75 views
Stateless static methods vs. C functions in Objective-C
In terms of good Objective-C coding practices, if I create a function that has no state, is it better to write it as a static method of some class or as a C function?
For example, I have a special ...
5
votes
3answers
493 views
Objective-C - difference between class method and static method?
So I've worked on different languages such as Java, C#, Objective C
In most languages methods that don't require an instance of the objects are called static methods. However, when it comes to ...
5
votes
5answers
92 views
Custom Java utility package
A common operation in my current project is converting a string version of an IP address into an integer representation, and it's easily handled by a single static method. I would normally try to ...