A static member is a data field that is shared by all instances of a class or structure for the same program. Static member exists even when no objects of the static data member's class exist. A feature of C++, roughly equivalent to Java static fields.

learn more… | top users | synonyms (1)

108
votes
8answers
79k views

Initializing private static members

This feels like a dumb question, but what is the best way to initialize a private, static data member in C++? I tried this but it gives me weird linker errors: class foo { private: ...
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) { ...
18
votes
4answers
3k views

Why does Java prohibit static fields in inner classes?

class OuterClass { class InnerClass { static int i = 100; // compile error static void f() { } // compile error } } Although it's not possible to access the static field with ...
24
votes
1answer
6k views

ASP.NET Application state vs a Static object

if i have a standard ASP.NET application, is there any difference between making an object static as opposed to putting the object instance in the Application state? from my understanding, both ...
21
votes
3answers
10k views

C++ Static member initalization (template fun inside)

For static member initialization I use a nested helper struct, which works fine for non templated classes. However, if the enclosing class is parameterized by a template, the nested initialization ...
11
votes
4answers
13k views

static vs extern “C”

(expert C/C++ question) What is the difference between a static member function and an extern "C" linkage function ? For instance, when using "makecontext" in C++, I need to pass a pointer to ...
45
votes
5answers
26k views

PHP: How to initialize static variables

I have this code: private static $dates = array( 'start' => mktime( 0, 0, 0, 7, 30, 2009), // Start date 'end' => mktime( 0, 0, 0, 8, 2, 2009), // End date 'close' => ...
11
votes
4answers
890 views

How to force a static member to be initialized?

Consider this example code: template<class D> char register_(){ return D::get_dummy(); // static function } template<class D> struct Foo{ static char const dummy; }; ...
10
votes
3answers
564 views

What are static variables?

What are static variables designed for? What's the difference between static int and int?
24
votes
2answers
655 views

Why is a class allowed to have a static member of itself, but not a non-static member?

class base { public: base a; }; It gives compilation error. class base { public: static base a; }; whereas this code does not give compilation error
3
votes
2answers
710 views

C++ member-function pointer

Consider the following class class Foo { typedef bool (*filter_function)(Tree* node, std::list<std::string>& arg); void filter(int filter, std::list<std::string>& args) ...
5
votes
2answers
1k views

Do static members ever get garbage collected?

Do static member variables ever get garbage collected? For example, let's use the following class. public class HasStatic { private static List<string> shared = new List<string>(); ...
6
votes
2answers
238 views

What am I allowed to do with a static, constexpr, in-class initialized data member?

This is probably a bit of an unusual question, in that it asks for a fuller explanation of a short answer given to another question and of some aspects of the C++11 Standard related to it. For ease ...
4
votes
2answers
539 views

Static members class vs. normal c-like interface

Hey there. After reading here about the Service Locator pattern, it got me thinking wether a class with only static members really is the way to go, or if a normal c-like interace wouldn't be more ...
2
votes
2answers
699 views

Linker error when using static members

I'm using Qt 4.7 and Cmake 2.8.3 with g++ 4.2.1 on Mac OS X. I'm getting a bizarre linker error when using static or global variables in one of my files. Here's the error: ld: duplicate symbol ...
33
votes
4answers
8k views

PHP5: const vs static

In PHP5, what is the difference between using const and static? When is each appropriate? And what role does public, protected and private play - if any.
4
votes
4answers
9k views

What is better: Static variable V.S. Asp.NET Application Session?

Say you want to share some resource, like a class or a variable across all threads/sessions within a ASP.NET web application. What is better? 1) A static variable having thread-safe accessors to ...
2
votes
4answers
5k views

Resolving a linker error: undefined reference to static class members

My code is Arduinoish. I turned on verbose compiling so I could verify that all the .o files are indeed getting passed to the linker correctly, and they are (linker command below). This leads me to ...
8
votes
5answers
4k views

C++: static member functions

After reading sbi and Eli Bendersky's answers in this question I started to wondering what static member functions are for. A class' friend free function shouldn't be able to do anything a static ...
7
votes
4answers
7k views

What does “typedef void (*Something)()” mean

I am trying to understand what this means, the code I am looking at has in .h typedef void (*MCB)(); static MCB m_process; in .C MCB Modes::m_process = NULL; And sometimes when I do ...
15
votes
8answers
698 views

C#.NET - Why do members of a static class need to be declared as static? Why isn't it just implicit?

Obviously there can't be an instance member on a static class, since that class could never be instantiated. Why do we need to declare members as static?
8
votes
3answers
688 views

Why don't static member variables play well with the ternary operator?

Here's the deal. I have a static class which contains several static functions used for getting input. The class contains a private static member variable for indicating whether the user entered any ...
11
votes
5answers
2k views

Weird undefined symbols of static constants inside a struct/class

Either I'm very tired or something weird is happening that I'm not aware of, because the code below is resulting in undefined symbols for Foo::A and Foo::B when linking. This is minimized as much as I ...
6
votes
6answers
19k views

How do you create a static template member function that performs actions on a template class?

I'm trying to create a generic function that removes duplicates from an std::vector. Since I don't want to create a function for each vector type, I want to make this a template function that can ...
11
votes
8answers
12k views

C# Static variables - scope and persistence

I just did a little experiment: public abstract class MyClass { private static int myInt = 0; public static int Foo() { return myInt; } public static int Foo(int n) { myInt = n; ...
5
votes
2answers
1k views

Is the ConcurrentDictionary thread-safe to the point that I can use it for a static cache?

Basically, if I want to do the following: public class SomeClass { private static ConcurrentDictionary<..., ...> Cache { get; set; } } Does this let me avoid using locks all over the ...
5
votes
1answer
329 views

Why can we have static final members but cant have static method in an inner class?

Why can we have static final members but cant have static method in an non static inner class ? Can we access static final member variables of inner class outside the outer class without ...
4
votes
4answers
2k views

How to auto-increment reference number persistently when NSManagedObjects created in core-data

In my application i am using core-data to store information and saving these data to the server using web-connectivity i have to use MySql. Basically what i want to do is to keep track of number of ...
2
votes
2answers
2k views

static access to entity manager in spring and unusual architecture

quick question: I have webapplication (wicket+spring+jpa) and was thinking about rather unusual architecture design. Please check it out and give your comments. Consider class Wrapper: @Service ...
10
votes
2answers
1k views

How do static member variables affect object size?

I'm wondering how static member variables are typically implemented in languages like C++ and Java and if their use affects the size of instantiated objects. I know that a static members are shared ...
6
votes
6answers
250 views

Why there is no concept of “const-correctness” for class's static member functions?

Use case: class A { static int s_common; public: static int getCommon () const { s_common; }; }; Typically this results in an error as: error: static member function ‘static int ...
1
vote
4answers
421 views

trying to force static object initialization

I am trying to initialize a static object without success. The purpose is to automatically register a factory class in a repository (which is a singleton). I've already had a look at: How to force a ...
1
vote
1answer
8k views

undefined reference to static member variable

I have this class that has a static member. it is also a base class for several other classes in my program. Here's its header file: #ifndef YARL_OBJECT_HPP #define YARL_OBJECT_HPP namespace ...
7
votes
9answers
15k views

How to serialize static data members of a Java class?

When we serialize objects, static members are not serialized, but if we need to do so, is there any way out?
7
votes
2answers
1k 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 ...
5
votes
2answers
571 views

F# code organization: types & modules

How do you decide between writing a function inside a module or as a static member of some type? For example, in the source code of F#, there are lots of types that are defined along with a equally ...
7
votes
5answers
2k views

What is the lifetime of class static variables in C++?

If I have a class called Test :: class Test { static std::vector<int> staticVector; }; when does staticVector get constructed and when does it get destructed ? Is it with the ...
5
votes
4answers
3k views

get static initialization block to run in a java without loading the class

I have a few classes as shown here public class TrueFalseQuestion implements Question{ static{ QuestionFactory.registerType("TrueFalse", "Question"); } public ...
1
vote
3answers
241 views

What is the best way to initialize a complex static member in Java?

My objective is to have a private static Properties object in my class, to act as defaults when creating other Properties objects needed by my application. The current implementation looks like this: ...
12
votes
6answers
3k views

When to use enums, and when to replace them with a class with static members?

It recently occured to me that the following (sample) enumeration... enum Color { Red, Green, Yellow, Blue } ... could be replaced with a seemingly more type-safe class: class ...
10
votes
3answers
7k views

Where are static class variables stored in memory?

This is a follow-up question to How are static arrays stored in Java memory? . So global variables in C/C++ are stored in the static data segment of memory. But what about static class variables in ...
4
votes
5answers
747 views

What is the scope of variables declared inside a static block in java?

Are variables declared inside a static block accessible anywhere else? What "kind" of member are they(ie., are they static member, too?)
4
votes
5answers
320 views

Don't static members make classes kind of (global) objects themselves?

Every time I come across an implementation of the singleton pattern or any static classes (i.e. classes with (almost) only static members) I wonder whether this isn't actually a hack and therefore ...
3
votes
2answers
5k views

Object retain behavior of Objective-C class methods

What's the best practice for retaining and releasing objects passed to class methods? For instance, if you have a "class variable" declared like so: static NSString *_myString = nil ...is the ...
2
votes
3answers
625 views

need of Static variables and their overhead on jvm

As per the concept about static members, they are created/loaded into the memory when there is first call made to its class. And they are common among all instances of that class. Means they are not ...
5
votes
3answers
163 views

Static initialization of inherited static member

Consider this example code: public class A<T> { public static T TheT { get; set; } } public class B : A<string> { static B() { TheT = "Test"; } } public class ...
3
votes
2answers
576 views

Static field initialization in template class in C++

I'm trying to create some self-registering classes in C++. So I tried the solution similar to the one provided here. While doing this I stumble over something strange. Here's the code: #include ...
3
votes
5answers
2k views

Using Static method and variables - Good vs Bad

I am developing C# and asp.net web application. I have general class called utilities, I have lot of public and static variables in this public utilities class. Since this number is gradually ...
3
votes
2answers
4k views

Protected static member variables

I've recently been working on some class files and I've noticed that the member variables had been set in a protected static mode like protected static $_someVar and accessed like static::$_someVar. ...
2
votes
2answers
735 views

Android Application life cycle and singelton

well most of us familiar with this pattern: public class MySingeltone { public String mSomeReferenceTypeData; public int mSomeValueTypeData; private static MySingeltone mInstance; ...

1 2