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

156
votes
20answers
4k 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 ...
133
votes
13answers
25k 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 ...
118
votes
9answers
66k 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?
92
votes
20answers
4k 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 ...
80
votes
9answers
41k 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 ...
72
votes
12answers
14k 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 ...
67
votes
22answers
4k views

Should C# methods that *can* be static be static?

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 ...
42
votes
9answers
16k 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. ...
40
votes
8answers
58k 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 ...
39
votes
6answers
42k 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 ...
38
votes
8answers
14k 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)?
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 ...
37
votes
7answers
28k views

Static variables in JavaScript

How can I create static variables in Javascript?
34
votes
8answers
15k 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 ...
33
votes
5answers
22k 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"; ...
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.
29
votes
5answers
11k 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 ...
28
votes
14answers
24k 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 ...
26
votes
3answers
411 views
+50

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 ...
26
votes
6answers
514 views

Why won't this static variable increment when using generics?

I need a certain class to contain a static member that keeps track of everytime an instance of that class is instantiated, essentially so that each instance of the class has a unique index. It works ...
26
votes
20answers
2k views

Static methods

I've just had an argument with someone I work with and it's really bugging me. If you have a class which just has methods like calculateRisk or/and calculatePrice, the class is immutable and has no ...
25
votes
7answers
14k views

Java: Static vs non static inner class

What is the difference between static and non static inner class?
25
votes
8answers
19k 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? ...
25
votes
9answers
5k 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 ...
24
votes
9answers
2k 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? ...
24
votes
3answers
10k 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 ...
23
votes
3answers
922 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 ...
23
votes
7answers
21k 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? ...
23
votes
4answers
3k 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 ...
22
votes
3answers
9k 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 ...
22
votes
8answers
10k 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> { ... } } ...
21
votes
7answers
590 views

Why can't I “static import” an “equals” method in Java?

I like using this method here: org.apache.commons.lang.ObjectUtils.equals(Object object1, Object object2) The only drawback (compared to Google Guava, for instance), is that I cannot static import ...
20
votes
6answers
950 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 ...
20
votes
9answers
4k 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 ...
20
votes
4answers
4k views

Are function static variables thread-safe in GCC?

In the example code void foo() { static Bar b; ... } compiled with GCC is it guaranteed that b will be created and initialized in a thread-safe manner ? In gcc's man page, found the ...
20
votes
8answers
14k 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 ...
19
votes
3answers
2k views

C# using consts in static classes

I was plugging away on an open source project this past weekend when I ran into a bit of code that confused me to look up the usage in the C# specification. The code in questions is as follows: ...
19
votes
3answers
4k 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 ...
19
votes
4answers
3k 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 ...
19
votes
10answers
19k views

Variable declarations in header files - static or not?

When refactoring away some #defines I came across declarations similar to the following in a C++ header file: static const unsigned int VAL = 42; const unsigned int ANOTHER_VAL = 37; The question ...
18
votes
2answers
175 views

Why doesn't the c# compiler check “staticness” of the method at call sites with a dynamic argument?

Why doesn't the C# compiler tell me that this piece of code is invalid? class Program { static void Main(string[] args) { dynamic d = 1; MyMethod(d); } public void ...
18
votes
1answer
170 views

Can a static method in a derived class call a protected constructor in C++?

This code works with clang but g++ says: error: ‘A::A()’ is protected class A { protected: A() {} }; class B : public A { static A f() { return A(); } // GCC claims this is an error }; ...
18
votes
3answers
577 views

Difference between initialization of static variables in C and C++

I was going through the code at http://geeksforgeeks.org/?p=10302 #include<stdio.h> int initializer(void) { return 50; } int main() { static int i = initializer(); printf(" value ...
18
votes
4answers
730 views

Why does the “static” keyword have so many meanings in C and C++?

As we know, the keyword static has multiple meanings in C. C99 added the possibility of legally writing void foo (int arr[static 50]) { // ... } which adds to the confusion, and C++ has static ...
18
votes
10answers
2k views

Static classes in PHP via abstract keyword?

According to the PHP manual, a class like this: abstract class Example {} cannot be instantiated. If I need a class without instance, e.g. for a registry pattern: class Registry {} // and later: ...
18
votes
8answers
5k views

What's the correct alternative to static method inheritance (C#)

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 ...
18
votes
5answers
19k views

Java synchronized 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 ...
18
votes
15answers
1k views

does Google analytics make a major effect on time to download a static web page?

I understand that by simply adding a script to the end of the body tag of a html document one makes it processable by Google analytics. My question is, is this likely to have much effect on ...
17
votes
7answers
509 views

How are static arrays stored in Java memory?

So in a language like C, memory is separated into 5 different parts: OS Kernel, text segment, static memory, dynamic memory, and the stack. Something like this: If we declared a static array in C, ...
17
votes
9answers
534 views

Why are static classes considered “classes” and “reference types”?

I’ve been pondering about the C# and CIL type system today and I’ve started to wonder why static classes are considered classes. There are many ways in which they are not really classes: A “normal” ...

1 2 3 4 5 60