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

308
votes
11answers
157k 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?
165
votes
10answers
96k 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 ...
377
votes
18answers
68k 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 ...
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.
48
votes
7answers
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? ...
101
votes
10answers
47k 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)?
25
votes
11answers
80k views

What is the reason behind “non-static method cannot be referenced from a static context”?

The very common beginner mistake is when you try to use a class property "statically" without making an instance of that class. It leaves you with the mentioned error message. You can either make the ...
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 ...
84
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 ...
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 ...
30
votes
9answers
17k views

Static Initialization Blocks

As far as I understood the "static initialization block" is used to set values of static field if it cannot be done in one line. But I do not understand why we need a special block for that. For ...
12
votes
13answers
3k views

Why isn't calling a static method by way of an instance an error for the Java compiler?

I'm sure you all know the behaviour I mean - code such as: Thread thread = new Thread(); int activeCount = thread.activeCount(); provokes a compiler warning. Why isn't it an error? EDIT: To be ...
136
votes
13answers
92k views

Static variables in JavaScript

How can I create static variables in Javascript?
130
votes
32answers
73k 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?
45
votes
12answers
74k 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 ...
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 ...
13
votes
7answers
38k views

calling non-static method in static method in Java

I'm getting an error when I try to call a non-static method in a static class. Cannot make a static reference to the non-static method methodName() from the type playback I can't make the method ...
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> { ... } } ...
39
votes
5answers
22k 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 ...
17
votes
4answers
18k views

Static variables initialisation order

C++ guarantees that variables in a compilation unit (.cpp file) are initialised in order of declaration. For number of compilation units this rule works for each one separately (I mean static ...
27
votes
4answers
10k views

Are static fields open for garbage collection?

Given an hypothetical utility class that is used only in program setup: class MyUtils { private static MyObject myObject = new MyObject(); /*package*/static boolean doStuff(Params... params) { ...
6
votes
2answers
757 views

List of useful environment settings in Java

I've been wondering a long time if there was a comprehensive list of (probably static) methods/fields that store runtime information for the JVM. An incomplete list of examples: System.out / ...
75
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 ...
97
votes
9answers
49k views

Java: Static vs non static inner class

What is the difference between static and non static inner class?
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 ...
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 ...
22
votes
4answers
13k views

Java static class initialization

Quick question - When are static fields initialized? If I never instantiate a class, but I access a static field, are ALL the static blocks and private static methods used to instantiate private ...
145
votes
12answers
33k 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 ...
17
votes
6answers
34k views

C++ Static array vs. Dynamic array?

What is the difference between a static array and a dynamic array in C++? I have to do an assignment for my class and it says not to use static arrays, only dynamic arrays. I've looked in the book ...
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 ...
17
votes
3answers
25k views

Qt static linking and deployment

I am trying to deploy(release to public) a simple qt application I made recently, but got stuck at static linking qt libs. I followed the guide on qt docs to re-build qt and my app statically. But ...
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. ...
16
votes
2answers
6k views

Why I can't initialize non-const static member or static array in class?

Why I can't initialize non-const static member or static array in a class? class A { static const int a = 3; static int b = 3; static const int c[2] = { 1, 2 }; static int d[2] = { ...
50
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 ...
2
votes
1answer
1k views

Using static variables instead of Application state in ASP.NET

I plane to use static variables instead of Application state in ASP.NET and am wondering if this is correct approach: [Global.asax.cs] ... public class Global : System.Web.HttpApplication { ...
92
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"; ...
36
votes
5answers
16k 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 ...
18
votes
2answers
13k views

How can I get a resource content from a static context?

I want to read up an xml file before I do much of anything else like setText on widgets, so how can I do that without an activity object to call getResources() on?
3
votes
3answers
3k views

PHP: Static and non Static functions and Objects

What's the difference between these object callings? Non Static: $var = new Object; $var->function(); Static: $var = User::function(); And also inside a class why should I use the static ...
20
votes
1answer
10k views

static allocation in java - heap, stack and permanent generation

I have been lately reading a lot on memory allocation schemes in java, and there have been many doubts as I have been reading from various sources. I have collected my concepts, and I need you people ...
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 ...
18
votes
2answers
4k views

How to deal with symbol collisions between statically linked libraries?

One of the most important rules and best practices when writing a library, is putting all symbols of the library into a libarary specific namespace. C++ makes this easy, due to the namespace keyword. ...
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 ...
28
votes
4answers
8k 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 ...
26
votes
5answers
7k views

Static Block in Java

I was looking over some code the other day and I came across: static { ... } Coming from C++, I had no idea why that was there. Its not an error because the code compiled fine. What is this ...
44
votes
9answers
69k views

What is a “static” function?

The question was about plan "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 ...
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 ...
12
votes
2answers
2k views

How is testing Registry Pattern or Singleton hard in PHP?

What I have been wondering lately is that why is testing singletons or registry pattern hard in a language like PHP which is request driven. You can write and run tests aside of the actual program ...
10
votes
4answers
5k views

Defining static members in C++

I am trying to define a public static variable like this : public : static int j=0; //or any other value too I am getting a compilation error on this very line : ISO C++ forbids ...
10
votes
4answers
19k views

ASP.NET C# Static Variables are global?

Today I released a small asp.net beta web application which allows internal staff to modify some product information. We started running into issues where users were overwriting each others product ...

1 2 3 4 5 16