Static is a term used in some programming languages to define a function or data storage area (field) that is not bound to any specific object instance.

learn more… | top users | synonyms

378
votes
18answers
69k views

Difference between static class and singleton pattern?

What real (i.e. practical) difference exist between a static class and a singleton pattern? Both can be invoked without instantiation, both provide only with one "instance" and neither of them is ...
311
votes
11answers
159k views

Static class variables in Python

Is it possible to have static class variables or methods in python? What syntax is required to do this?
199
votes
21answers
6k views

Are fluid websites worth making anymore?

I'm making a website now and I am trying to decide if I should make it fluid or not. Fixed width websites are much easier to make and also much easier to make them appear consistent. To be honest ...
167
votes
10answers
97k views

When to Use Static Classes in C#

Here's what MSDN has to say under When to Use Static Classes: static class CompanyInfo { public static string GetCompanyName() { return "CompanyName"; } public static string ...
145
votes
12answers
34k views

Can I add extension methods to an existing static class?

I'm a fan of extension methods in C#, but haven't had any success adding an extension method to a static class, such as Console. For example, if I want to add an extension to Console, called ...
137
votes
13answers
93k views

Static variables in JavaScript

How can I create static variables in Javascript?
132
votes
21answers
16k views

Why are static variables considered evil?

I am a Java programmer who is new to the corporate world. Recently I've developed an application using Groovy and Java. All through the code I've used quite a good number of statics. I was asked by ...
130
votes
32answers
74k views

Why is the Java main method static?

The method signature of a Java main method is: public static void main(String[] args){ ... } Is there a reason for this method to be static?
102
votes
10answers
48k views

What does “static” mean in a C program?

I've seen the word static used in different places in C code; is this like a static function/class in C# (where the implementation is shared across objects)?
99
votes
9answers
50k views

Java: Static vs non static inner class

What is the difference between static and non static inner class?
94
votes
6answers
63k views

C++ static constant string (class member)

I'd like to have a private static constant for a class (in this case a shape-factory). I'd like to have something of the sort. class A { private: static const string RECTANGLE = "rectangle"; ...
91
votes
5answers
3k views

Static fields on a null reference in Java

static fields (or static methods) in Java are associated with their respective classes rather than the objects of those classes. The following code attempts to invoke a static field on a null ...
85
votes
10answers
85k views

Objective C Static Class Level variables

I have a class Film, each of which stores a unique ID. In C#, Java etc I can define a static int currentID and each time i set the ID i can increase the currentID and the change occurs at the class ...
81
votes
5answers
30k views

change private static final field using java reflection

I have a class with a private static final field, that unfortunately i need to change at run time. using reflection i get this error: java.lang.IllegalAccessException: Can not set static final ...
79
votes
14answers
22k 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.
76
votes
8answers
110k views

How do you create a static class in C++?

How do you create a static class in C++? I should be able to do something like: cout << "bit 5 is " << BitParser::getBitAt(buffer, 5) << endl; Assuming I created the BitParser ...
76
votes
9answers
27k views

Why would a static inner interface be used in Java?

I have just found a static inner interface in our code-base. class Foo { public static interface Bar { /* snip */ } /* snip */ } I have never seen this before. The original ...
73
votes
7answers
62k views

Java: Static Class?

I have a class full of utility functions. Instantiating an instance of it makes no semantic sense, but I still want to call its methods. What is the best way to deal with this? Static class? Abstract? ...
73
votes
20answers
42k 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 ...
71
votes
21answers
5k views

Should C# methods that *can* be static be static? [closed]

Should C# methods that can be static be static? We were discussing this today and I'm kind of on the fence. Imagine you have a long method that you refactor a few lines out of. The new method ...
70
votes
9answers
32k views

Why can't I inherit static classes?

I have several classes that do not really need any state. From the organizational point of view, I would like to put them into hierarchy. But it seems I can't declare inheritance for static classes. ...
66
votes
3answers
25k views

What is the lifetime of a static variable in a C++ function?

If a variable is declared as static in a function's scope it is only initialized once and retains its value between function calls, we all know that but what exactly is its lifetime? When do its ...
64
votes
5answers
2k views

Creating an object in a static way

Could anyone explain how Java executes this code? I mean the order of executing each statement. public class Foo { boolean flag = sFlag; static Foo foo = new Foo(); static boolean sFlag = ...
61
votes
7answers
3k views

What is the gain from declaring a method as static

I've recently been looking through my warnings in Eclipse and come across this one: It will give a compiler warning if the method can be declared as static. [edit] Exact quote within the Eclipse ...
57
votes
5answers
45k views

Java synchronized static methods: lock on object or class

The Java Tutorials say: "it is not possible for two invocations of synchronized methods on the same object to interleave." What does this mean for a static method? Since a static method has no ...
56
votes
3answers
16k views

New self vs. new static

I am trying to convert a PHP 5.3 library to work on PHP 5.2. The main thing standing in my way is the use of late static binding like return new static($options); , if I convert this to return new ...
54
votes
16answers
46k views

static constructors in C++? need to initialize private static objects

I want to have a class with a private static data member (a vector that contains all the characters a-z). In java or C#, I can just make a "static constructor" that will run before I make any ...
53
votes
11answers
56k views

private final static attribute vs private final attribute

In java, what's the difference between: private final static int NUMBER = 10; And private final int NUMBER = 10; Both are private and both are final, the difference is the static attribute. ...
53
votes
5answers
19k views

Are Java static initializers thread safe?

I'm using a static code block to initialize some controllers in a regsitry I have. My question is therefore, can I guarantee that this static code block will only absolutely be called once when the ...
51
votes
8answers
15k views

Why can't I declare static methods in an interface?

The topic says the most of it - what is the reason for the fact that static methods can't be declared in an interface? public interface ITest { public static String test(); } The code above ...
49
votes
8answers
40k views

Getting the class name from a static method in Java

How can one get the name of the class from a static method in that class. For example public class MyClass { public static String getClassName() { String name = ????; // what goes here so ...
49
votes
8answers
39k views

Stack,Static and Heap in C++

I've searched, but I've not understood very well these three concepts. When do I have to use dynamic allocation (in the heap) and what's its real advantage? What are the problems of static and stack? ...
48
votes
8answers
24k views

Static nested class in Java, why?

I was looking at the Java code for LinkedList and noticed that it made use of a static nested class, Entry. public class LinkedList<E> ... { ... private static class Entry<E> { ... } } ...
46
votes
9answers
70k views

What is a “static” function?

The question was about plain "C" functions, not "C++" static methods, as clarified in comments. Ok, I understand what a static variable is, but what is a "static" function? And why is it that if I ...
45
votes
12answers
75k views

What does the 'static' keyword do in a class?

To be specific, I was trying this code: package hello; public class Hello { Clock clock = new Clock(); public static void main(String args[]) { clock.sayTime(); } } But it ...
43
votes
11answers
6k views

Play! framework uses a <lot> of statics

Waaah, the Play! framework has so many static methods. Where I go to school, we were told never ever to use any statics, yet Play! uses it like there's no tomorrow. Is that somehow okay? If so, why? ...
40
votes
11answers
15k views

C++ static virtual members?

Is it possible in C++ to have a member function that is both static and virtual? Apparently, there isn't a straightforward way to do it (static virtual member(); is a complie error), but is there at ...
39
votes
14answers
2k views

On the static final keywords in Java

According to the tutorial: The static modifier, in combination with the final modifier, is also used to define constants. The final modifier indicates that the value of this field cannot change. ...
39
votes
5answers
23k views

Static initializer in Java

My question is about one particular usage of static keyword. It is possible to use static keyword to cover a code block within a class which does not belong to any function. For example following code ...
39
votes
5answers
17k views

Why does PHP 5.2+ disallow abstract static class methods?

After enabling strict warnings in PHP 5.2, I saw a load of strict standards warnings from a project that was originally written without strict warnings: Strict Standards: Static function ...
39
votes
4answers
9k views

Are static class instances unique to a request or a server in ASP.NET?

On an ASP.NET website, are static classes unique to each web request, or are they instantiated whenever needed and GCed whenever the GC decides to disposed of them? The reason I ask is because I've ...
39
votes
2answers
1k views

Why isn't a qualified static final variable allowed in a static initialization block?

Case 1 : class Program { static final int var; static { Program.var = 8; // Compilation error } public static void main(String[] args) { int i; ...
38
votes
10answers
11k views

Should a “static final Logger” be declared in UPPER-CASE?

In Java, static final variables are constants and the convention is that they should be in upper-case. However, I have seen that most people declare loggers in lower-case which comes up as a violation ...
36
votes
8answers
10k views

What's the correct alternative to static method inheritance?

I understand that static method inheritance is not supported in C#. I have also read a number of discussions (including here) in which developers claim a need for this functionality, to which the ...
36
votes
3answers
1k views

Does there exist a static_warning?

I'm aware of this question which mentions Boost's "STATIC WARNING", but I'd like to ask again, specifically, how I could implement a static_warning which operates similarly to static_assert but only ...
35
votes
8answers
11k views

Static files in Flask - robot.txt, sitemap.xml (mod_wsgi)

Is there any clever solution to store static files in Flask's application root directory. robots.txt and sitemap.xml are expected to be found in /, so my idea was to create routes for them: ...
35
votes
4answers
4k views

Using a class's static member on a derived type?

Using Resharper 4.1, I have come across this interesting warning: "Access to a static member of a type via a derived type". Here is a code sample of where this occurs: class A { public static ...
35
votes
5answers
4k views

Behaviour of final static method

I have been playing around with modifiers with static method and came across a weird behaviour. As we know, static methods cannot be overridden, as they are associated with class rather than ...
34
votes
3answers
9k views

Static constructor equivalent in Objective-C?

I'm new to Objective C and I haven't been able to find out if there is the equivalent of a static constructor in the language, that is a static method in a class that will automatically be called ...
34
votes
3answers
3k views

Deprecation of the static keyword… no more?

In C++ it is possible to use the static keyword within a translation unit to affect the visibility of a symbol (either variable or function declaration). In n3092, this was deprecated: Annex D.2 ...

1 2 3 4 5 108